我收到此错误
Property implementation must have its declaration in interface "AppDelegate"
当我宣布
@implementation AppDelegate
@synthesize window, viewController;
@synthesize token;
我正在使用 Xcode 4.4。
我收到此错误
Property implementation must have its declaration in interface "AppDelegate"
当我宣布
@implementation AppDelegate
@synthesize window, viewController;
@synthesize token;
我正在使用 Xcode 4.4。
这意味着您需要转到您的AppDelegate.h
文件,并为token
. 假设它是NSString*
; 那么您应该将以下行添加到您的 .h 文件中:
@property (nonatomic, readwrite) NSString *token;
替换您的财产NSString*
的正确类型。token
可以在此处找到有关属性的更多信息。
看起来您没有在 .h 文件中将widow、viewController或token设置为属性。
你输入了吗@property (nonatomic, strong) NSString *token;