2012-12-21 85 views
0

我有一個實現協議的CLLocationManager單例,所以我可以告訴其他模型類(ServerConnection)已找到用戶的更新位置。iOS - 將Model類設置爲另一個Model類的委託

在我的方法AppDelegate中,didFinishLaunching,我寫

ServerConnection* serverConnection = [[ServerConnection alloc] init]; 
[LocationManager sharedLocationSingleton].delegate = serverConnection; 
[[LocationManager sharedLocationSingleton] getUsersLocation]; 

這不工作,我一個ServerConnection類委託方法不被調用。但是,如果我嘗試讓我的AppDelegate類成爲偵聽器,如下面的行,它工作正常。

// self refers to AppDelegate 
[LocationManager sharedLocationSingleton].delegate = self; 

在這裏,我的AppDelegate實現了所需的委託方法,當用戶的位置更新的方法被調用,因爲它應該。

爲什麼我的上述方法失敗,我嘗試將委託設置爲serverConnection?

在線教程通常指向使用UIViewController或AppDelegate作爲「偵聽器」,但在我的情況下,我想要一個單獨的模型類作爲偵聽器。我怎麼做?

下面是我的LocationManager單例類與協議

@class LocationManager; 

@protocol LocationManagerDelegate <NSObject> 
@required 
-(void)LocationManagerUpdated:(LocationManager*) locationManager 
        withValue:(CLLocation*) location; 
@end 

@interface LocationManager : NSObject <CLLocationManagerDelegate> 

@property (strong, nonatomic) CLLocationManager* locationManager; 
@property (strong, nonatomic) CLLocation* location; 
@property (weak, nonatomic) id <LocationManagerDelegate> delegate; 

+(LocationManager*)sharedLocationSingleton; 
-(void) getUsersLocation; 

@end 

用於服務器連接我的頭文件。

#import <Foundation/Foundation.h> 
#import "LocationManager.h" 

@interface ServerConnection : NSObject <LocationManagerDelegate> 
@end 

這適用於AppDelegate設置爲偵聽器,但不是我的模型對象ServerConnection。我該如何解決?

謝謝!

+0

是什麼'ServerConnection'接口定義? – sergio

+0

編輯過的帖子,謝謝! –

回答

0

應該有在做你正在嘗試做的沒有問題的(即具有非控制器類的實例作爲一個代表)。

這適用於AppDelegate設置爲偵聽器,但不是我的模型對象ServerConnection。

您的ServerConnection類是否執行LocationManagerDelegate協議? (我的意思是實現而不是僅僅在其接口中聲明它)。

檢查負責LocationManager方法調用的委託方法(LocationManagerUpdated:),並添加有一個NSLog跟蹤檢查委託對象是否設置正確,當你嘗試發送郵件。

編輯:

ServerConnection* serverConnection = [[ServerConnection alloc] init]; 
[LocationManager sharedLocationSingleton].delegate = serverConnection; 
[[LocationManager sharedLocationSingleton] getUsersLocation]; 

你對此有何評論後,很顯然,這個問題從在屬性中堆棧變量實例serverConnection而不是莖。

你使delegate財產的做法強大的屬性不是因爲it leads to retain cycles正確。你需要做的是在執行我粘貼的代碼(應用程序代理?)的類中定義一個strongserverConnection屬性。

如果您不介意我的皮疹,如果您將代表定義爲強屬性,那麼您正在通過添加隱藏第一個代碼的第二個錯誤來修復錯誤。

+0

謝謝!通過更改我的代理的屬性聲明從弱到強來修復此問題 –

+0

將代理設置爲強屬性是災難的祕訣,因爲它會導致循環依賴:http://stackoverflow.com/questions/8449040/why-use - 針對代表團的弱點 – sergio

+0

非常感謝您編輯的答案。具有很大的意義。 –

-1

它看起來像serverConnection沒有保留在任何地方,因爲delegate屬性被指定爲weak,它被釋放並設置爲零。

檢查getUsersLocation方法,看看是否委託是零此刻的你正在嘗試調用LocationManagerUpdated:withValue:

+0

謝謝!我通過使代表屬性強而不是弱 –

+0

來解決這個問題。你不應該使委託屬性更強。我會建議考慮其他解決方案。問題是,爲什麼不在任何地方保留'serverConnection'。也許你不需要這個'delegate'屬性,只需將'serverConnection'作爲'LocationManager'的私有屬性即可 – Mindaugas

相關問題