0
我正在嘗試使用Objective-C和Xcode 4,並且有點不明白。由Xcode生成的UIApplicationDelegate問題
在h文件:
@interface viewexampleAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet viewexampleViewController *viewController;
@end
在.m文件:
@synthesize window=_window;
@synthesize viewController=_viewController;
所以問題 下面的代碼由對Xcode的基於視圖的iPhone應用程序產生的是: _window和_viewController來自哪裏?我沒有看到它們的任何聲明或初始化。
非常感謝!解開我的神祕! – Wudong 2011-04-12 09:18:35