处理SceneDelegate (
2022-09-26  本文已影响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];

上一篇下一篇

猜你喜欢

热点阅读