在我的.h:爲什麼不能識別這個實例變量?
@class PanelController;
@interface PanelController : NSWindowController <NSWindowDelegate>
{
NSURL *zURL;
}
@property (nonatomic, assign) NSURL *zURL;
@end
在我的.m:
@synthesize zURL;
...
- (IBAction)openBrowser:(id)sender {
self.zUrl = [zOpenPanel URL];
}
錯誤:
zURL not found on object PanelController
有代碼塊中一個錯字?你寫了「self.zUrl」這是!=「self.zURL」,如果這就是你的意思。錯誤字符串有zURL,這意味着某些東西是錯誤的。 –