1

我收到此错误

Property implementation must have its declaration in interface "AppDelegate"

当我宣布

@implementation AppDelegate

@synthesize window, viewController;
@synthesize token;

我正在使用 Xcode 4.4。

4

2 回答 2

1

这意味着您需要转到您的AppDelegate.h文件,并为token. 假设它是NSString*; 那么您应该将以下行添加到您的 .h 文件中:

@property (nonatomic, readwrite) NSString *token;

替换您的财产NSString*的正确类型。token可以在此处找到有关属性的更多信息。

于 2012-08-24T13:17:03.253 回答
0

看起来您没有在 .h 文件中将widowviewControllertoken设置为属性。

你输入了吗@property (nonatomic, strong) NSString *token;

于 2012-08-24T13:17:51.693 回答