iOS - 建立UIWindow,ios建立uiwindow

來源:互聯網
上載者:User

iOS - 建立UIWindow,ios建立uiwindow

iOS程式啟動完畢後,建立的第一個試圖控制項就是UIWindow,接著建立控制器的view,最後將控制器的view添加到UIWindow上

APPdelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.    // 視窗注意點:1.不要被銷毀,需要弄一個強引用 2.必須視窗的尺寸    // 1.建立視窗對象    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];    self.window.backgroundColor = [UIColor yellowColor];    // 2.建立視窗的根控制器,並且賦值    UIViewController *rootVc = [[UIViewController alloc] init];    rootVc.view.backgroundColor = [UIColor greenColor];    self.window.rootViewController = rootVc;    // 3.顯示視窗    [self.window makeKeyAndVisible];    return YES;}
鍵盤和狀態列都是視窗
UITextField *text = [[UITextField alloc] init];[text becomeFirstResponder];[self.window addSubview:text];
視窗層級UIWindowLevelNormalUIWindowLevelStatusBarUIWindowLevelAlert

alert最大,層級可以加減

通過storyboard載入控制器
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.    // 1. 建立視窗    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];    // 2.載入main.storyboard    // name:storyboard名稱不需要尾碼    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];    // 載入storyboard控制器    // 預設載入箭頭指向的控制器    //UIViewController *vc = [storyboard instantiateInitialViewController];    // 通過標識符載入控制器    UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"blue"];    // 設定視窗的根控制器    self.window.rootViewController = vc;    // 3.顯示視窗    [self.window makeKeyAndVisible];    return YES;}
通過xib建立控制器

// xib載入控制器步驟// xib必須有view去描述控制器// xib中哪個view描述控制器view,必須連線// 讓xib和控制器產生連線,告訴xib是用來描述控制器self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];ViewController *vc = [[ViewController alloc] initWithNibName:@"vc" bundle:nil];      self.window.rootViewController = vc;[self.window makeKeyAndVisible];
loadview方法載入控制器

底層實現:判斷下有沒有指定的storyboard,如果有,就會建立storyboard描述的控制器的view,如果沒有就會建立一個空的view

// 作用:載入控制器的view,調用時間:當控制器的view第一次使用的時候調用// BGView是新建立的繼承於UIView的對象- (void)loadView{    BGView *view = [[BGView alloc] initWithFrame:[UIScreen mainScreen].bounds];    self.view = view;    self.view.backgroundColor = [UIColor redColor];}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.