如第三講中看到的,即使不使用 XIB 檔案,也可以通過重寫 viewDidLoad 函數來配置任意的view或者是Controller。這裡我們看看怎樣編程定製這樣的view和Controller。
首先如果 UIViewController 的 init 方法找不到 XIB 檔案的話,會自動建立一個自己的 UView 對象,使用 viewDidLoad 將自己登入。所以,我們可以在定製 UIViewController 時實現 viewDidLoad 方法、將 view 作為 subview。
例子中 view 的背景為藍色,在其上設定一個 UIButton。
第一步,在 CustomViewControllerAppDelegate.m 檔案中定義 CustomViewController 類。
@interface CustomViewController : UIViewController {
}
@end
同時,在 CustomViewControllerAppDelegate.h 檔案中實現該執行個體。
@class CustomViewController;
@interface CustomViewControllerAppDelegate : NSObject {
UIWindow *window;
CustomViewController* controller;
}
@class CustomViewController 類似與C++中的類先聲明。
因為不需要外部對象的訪問,所以沒有 @property 宣言。
CustomViewController 的執行個體在 CustomViewControllerAppDelegate 類的成員函數 applicationDidFinishLaunching 中產生,然後用 addSubview 將 CustomViewController執行個體中的 view 添加進去。最後在 CustomViewControllerAppDelegate 釋放的時候(dealloc)中釋放其執行個體。代碼如下所示:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
viewController = [[CustomViewController alloc]init];
[window addSubview:viewController.view];
[window makeKeyAndVisible];
}
- (void)dealloc {
[window release];
[controller release];
[super dealloc];
}
用 window addSubview 表示最初的view。
然後像下面簡單地聲明和實現 CustomViewController。在 CustomViewController 的 viewDidLoad 函數中設定背景色為藍色。
@interface CustomViewController : UIViewController {
}
@end
@implementation CustomViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor blueColor];
}
@end
編譯以後執行一下,看到下面的結果。
接下來我們再來添加按鈕,我們動態產生一個 UIButtonTypeInfoLight 類型的按鈕,設定了按鈕的 frame 後,用addSubview 添加到 view 上。
@implementation CustomViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor blueColor];
UIButton* button = [UIButton buttonWithType:UIButtonTypeInfoLight];
button.frame = CGRectMake(100,100,100,100);
[self.view addSubview:button];
}
@end
最終的效果如下:
下一講我們來具體定製按鈕動作
作者:易飛揚