IOS延長啟動畫面的兩種方法
阿新 • • 發佈:2019-02-03
1. 在ViewController的viewDidLoad方法裡延時。
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//[NSThread sleepForTimeInterval:3];
}
@end
2. 在AppDelegate的
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;方法裡延時。
@implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. [NSThread sleepForTimeInterval:3.0]; return YES; }
還有其他好的方法請留言