當我宣佈物業實現必須有它的聲明在接口 '的AppDelegate'
@implementation AppDelegate
@synthesize window, viewController;
@synthesize token;
我使用的Xcode 4.4我收到此錯誤
Property implementation must have its declaration in interface "AppDelegate"
。
當我宣佈物業實現必須有它的聲明在接口 '的AppDelegate'
@implementation AppDelegate
@synthesize window, viewController;
@synthesize token;
我使用的Xcode 4.4我收到此錯誤
Property implementation must have its declaration in interface "AppDelegate"
。
這意味着你需要去您的AppDelegate.h
文件,並添加一個聲明token
。假設它是NSString*
;正確類型的token
財產
@property (nonatomic, readwrite) NSString *token;
替補NSString*
:那麼你應該將下面一行添加到您的.h文件中。有關房產的更多信息可以在here找到。
它看起來像您沒有設置寡婦,的viewController或令牌在你的.h文件屬性。
你鍵入@property (nonatomic, strong) NSString *token;
令牌這是一個令牌的推送通知,你能不能給我建議正確的類型?非常感謝 – GibboK
我認爲它是'NSData *',但我不是100%確定的。 – dasblinkenlight
它工作很多,謝謝我用這個屬性@property(保留,非原子)NSString *標記; – GibboK