Xcode11 新建工程中的SceneDelegate

級(jí)別: ★☆☆☆☆
標(biāo)簽:「iOS13」「Xcode11」「SceneDelegate」
作者: dac_1033
審校: QiShare團(tuán)隊(duì)


Xcode 11 建新工程默認(rèn)會(huì)創(chuàng)建通過 UIScene 管理多個(gè) UIWindow 的應(yīng)用,工程中除了 AppDelegate 外還會(huì)有一個(gè) SceneDelegate觉增,這是為了實(shí)現(xiàn)iPadOS支持多窗口的結(jié)果兵拢。AppDelegate.h不再有window屬性,window屬性被定義在了SceneDelegate.h中逾礁,AppDelegate中有新增的關(guān)于scene的代理方法说铃,SceneDelegate中也有相應(yīng)的代理方法。因此嘹履,當(dāng)我們用Xcode11針對(duì)不同版本的iOS開發(fā)應(yīng)用時(shí)腻扇,就要做一些適配。

創(chuàng)建好一個(gè)工程后砾嫉,可以看到相關(guān)Xcode開發(fā)界面變成了下面這樣:

工程配置general
info.plist文件

AppDelegate.h中多了兩個(gè)默認(rèn)的代理方法:

#pragma mark - UISceneSession lifecycle

/*
1.如果沒有在APP的Info.plist文件中包含scene的配置數(shù)據(jù)幼苛,或者要?jiǎng)討B(tài)更改場(chǎng)景配置數(shù)據(jù),需要實(shí)現(xiàn)此方法焕刮。 UIKit會(huì)在創(chuàng)建新scene前調(diào)用此方法舶沿。
2.方法會(huì)返回一個(gè)UISceneConfiguration對(duì)象,其包含其中包含場(chǎng)景詳細(xì)信息配并,包括要?jiǎng)?chuàng)建的場(chǎng)景類型括荡,用于管理場(chǎng)景的委托對(duì)象以及包含要顯示的初始視圖控制器的情節(jié)提要。 如果未實(shí)現(xiàn)此方法荐绝,則必須在應(yīng)用程序的Info.plist文件中提供場(chǎng)景配置數(shù)據(jù)一汽。

總結(jié)下:默認(rèn)在info.plist中進(jìn)行了配置避消, 不用實(shí)現(xiàn)該方法也沒有關(guān)系低滩。如果沒有配置就需要實(shí)現(xiàn)這個(gè)方法并返回一個(gè)UISceneConfiguration對(duì)象召夹。
配置參數(shù)中Application Session Role 是個(gè)數(shù)組,每一項(xiàng)有三個(gè)參數(shù):
Configuration Name:   當(dāng)前配置的名字;
Delegate Class Name:  與哪個(gè)Scene代理對(duì)象關(guān)聯(lián);
StoryBoard name: 這個(gè)Scene使用的哪個(gè)storyboard恕沫。
注意:代理方法中調(diào)用的是配置名為Default Configuration的Scene监憎,則系統(tǒng)就會(huì)自動(dòng)去調(diào)用SceneDelegate這個(gè)類。這樣SceneDelegate和AppDelegate產(chǎn)生了關(guān)聯(lián)婶溯。
*/
- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options {
    // Called when a new scene session is being created.
    // Use this method to select a configuration to create the new scene with.
    return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role];
}

// 在分屏中關(guān)閉其中一個(gè)或多個(gè)scene時(shí)候回調(diào)用
- (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet<UISceneSession *> *)sceneSessions {
    // Called when the user discards a scene session.
    // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
    // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
}

SceneDelegate.m中的默認(rèn)代理方法如下:

- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
    // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
    // If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
    // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
}

- (void)sceneDidDisconnect:(UIScene *)scene {
    // Called as the scene is being released by the system.
    // This occurs shortly after the scene enters the background, or when its session is discarded.
    // Release any resources associated with this scene that can be re-created the next time the scene connects.
    // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead).
}

- (void)sceneDidBecomeActive:(UIScene *)scene {
    // Called when the scene has moved from an inactive state to an active state.
    // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}

- (void)sceneWillResignActive:(UIScene *)scene {
    // Called when the scene will move from an active state to an inactive state.
    // This may occur due to temporary interruptions (ex. an incoming phone call).
}

- (void)sceneWillEnterForeground:(UIScene *)scene {
    // Called as the scene transitions from the background to the foreground.
    // Use this method to undo the changes made on entering the background.
}

- (void)sceneDidEnterBackground:(UIScene *)scene {
    // Called as the scene transitions from the foreground to the background.
    // Use this method to save data, release shared resources, and store enough scene-specific state information
    // to restore the scene back to its current state.
}

1. 不需要多窗口(multiple windows)

如果需要支持iOS 13 及之前多個(gè)版本的iOS鲸阔,且又不需要多個(gè)窗口的功能,可以刪除項(xiàng)目info.plist文件中的Application Scene Manifest的配置數(shù)據(jù)迄委,AppDelegate中關(guān)于Scene的代理方法褐筛、SceneDelegate的類是否刪除都可以。
如果使用純代碼來實(shí)現(xiàn)顯示界面叙身,需要在AppDelegate.h中手動(dòng)添加window屬性渔扎,添加以下代碼即可:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    [self.window setBackgroundColor:[UIColor whiteColor]];
    
    ViewController *con = [[ViewController alloc] init];
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:con];
    [self.window setRootViewController:nav];
    [self.window makeKeyAndVisible];
    return YES;
}

2. 支持多窗口

iOS 13項(xiàng)目info.plist中的配置項(xiàng)Application Scene Manifest是針對(duì)iPad multiple windows功能推出的。在保留Application Scene Manifest配置項(xiàng)不予刪除時(shí)(其中信轿,項(xiàng)目是否支持多窗口功能是個(gè)可勾選項(xiàng))晃痴,AppDelegate的生命周期方法不再起作用,需要在SceneDelegate中使用UIScene提供的生命周期方法财忽,并且需要針對(duì) iOS 13 需要在Scene中配置和 iOS 13 以下在AppDelegate中做兩套配置倘核。
下面是純代碼實(shí)現(xiàn)界面顯示的代碼:

//// AppDelegate.m中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    if (@available(iOS 13.0, *)) {

    } else {
        self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
        [self.window setBackgroundColor:[UIColor whiteColor]];
        
        ViewController *con = [[ViewController alloc] init];
        UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:con];
        [self.window setRootViewController:nav];
        [self.window makeKeyAndVisible];
    }
    return YES;
}
//// SceneDelegate.m中

- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
    
    //在這里手動(dòng)創(chuàng)建新的window
    if (@available(iOS 13.0, *)) {
        UIWindowScene *windowScene = (UIWindowScene *)scene;
        self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
        [self.window setWindowScene:windowScene];
        [self.window setBackgroundColor:[UIColor whiteColor]];
        
        ViewController *con = [[ViewController alloc] init];
        UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:con];
        [self.window setRootViewController:nav];
        [self.window makeKeyAndVisible];
    }
}

注意:如果不使用storyboard,需要將配置中的storyboard項(xiàng)刪除:

general
info.plist

推薦文章:
iOS App啟動(dòng)優(yōu)化(二)—— 使用“Time Profiler”工具監(jiān)控App的啟動(dòng)耗時(shí)
iOS App啟動(dòng)優(yōu)化(一)—— 了解App的啟動(dòng)流程
iOS WKWebView的基本使用
Swift 5.1 (4) - 集合類型
iOS 解析一個(gè)自定義協(xié)議
iOS13 DarkMode適配(二)
iOS13 DarkMode適配(一)
2019蘋果秋季新品發(fā)布會(huì)速覽

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末即彪,一起剝皮案震驚了整個(gè)濱河市紧唱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌祖凫,老刑警劉巖琼蚯,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異惠况,居然都是意外死亡遭庶,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門稠屠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來峦睡,“玉大人,你說我怎么就攤上這事权埠≌チ耍” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵攘蔽,是天一觀的道長(zhǎng)龙屉。 經(jīng)常有香客問我,道長(zhǎng),這世上最難降的妖魔是什么转捕? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任作岖,我火速辦了婚禮,結(jié)果婚禮上五芝,老公的妹妹穿的比我還像新娘芦瘾。我一直安慰自己淘衙,他們只是感情好丘薛,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布娱挨。 她就那樣靜靜地躺著,像睡著了一般醉途。 火紅的嫁衣襯著肌膚如雪矾瑰。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天隘擎,我揣著相機(jī)與錄音脯倚,去河邊找鬼。 笑死嵌屎,一個(gè)胖子當(dāng)著我的面吹牛推正,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播宝惰,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼植榕,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了尼夺?” 一聲冷哼從身側(cè)響起尊残,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎淤堵,沒想到半個(gè)月后寝衫,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡拐邪,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年慰毅,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片扎阶。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡汹胃,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出东臀,到底是詐尸還是另有隱情着饥,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布惰赋,位于F島的核電站宰掉,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜轨奄,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一仇穗、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧戚绕,春花似錦、人聲如沸枝冀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)果漾。三九已至球切,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間绒障,已是汗流浹背吨凑。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留户辱,地道東北人鸵钝。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像庐镐,于是被迫代替她去往敵國(guó)和親恩商。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容