2015-08-25 61 views
0

我試圖實現我的ReachabilityManager單例並檢查互聯網是否可達。不幸的是,當我嘗試調用類方法時,出現此錯誤。不可識別的ReachabilityManager單例類方法

enter image description here

要經過的清單:

1)我已導入無論是可達性和我的經理爲我工作了的tableView。 enter image description here

2)我已經在我的單例中實現了類方法。 enter image description here

3)我也實例化了appDelegate中的管理器。 enter image description here

那麼我錯過了什麼?

+1

請更新您的問題,用您的代碼的實際(格式)的文本替換代碼圖像。在提供答案時,閱讀起來更容易,而且更容易處理。 – rmaddy

回答

1

isReachable是一個類的方法和你正在試圖通過以這樣

[[InternetReachabilityManager sharedManager] isReachable] ; 

來調用這個類的一個對象類方法這個工作,你應該打電話給你的類方法從類本身而不是像這樣創建類的對象:

[InternetReachabilityManager isReachable] ; 
0

從您發佈的內容來看,您不需要爲共享實例發送消息,因爲isReachable是您的類方法。只是:

[InternetReachabilityManager isReachable] 

應該工作。