iPhone開發進階(5) --- 編程定製UIViewController

來源:互聯網
上載者:User

如第三講中看到的,即使不使用 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


最終的效果如下:

 

下一講我們來具體定製按鈕動作

作者:易飛揚

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.