美文网首页
处理SceneDelegate (

处理SceneDelegate (

作者: 普通如我 | 来源:发表于2022-09-26 22:48 被阅读0次

SceneDelegate 适用版本>= iOS 13.0  xcode 11以后

如果支持的iOS系统级是低于iOS13, 则需要

1. 删除 SceneDelegate,h 和 .m文件; 

2. Ingfo.plist 减号删除掉 Application Scene Manifest 字典

3. 在 Appdelegate.h 文件添加 @property (strong, nonatomic) UIWindow * window;

4. 在 Appdelegate.m 文件添加:

#import "ViewController.h"

(didFinishLaunchingWithOptions 方法里)

 self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];

 self.window.backgroundColor = [UIColor whiteColor];

 self.window.rootViewController = [[ViewController alloc] init];

 [self.window makeKeyAndVisible];

相关文章

网友评论

      本文标题:处理SceneDelegate (

      本文链接:https://www.haomeiwen.com/subject/edpqartx.html