Implementing a splash screen in iOS

前端 未结 10 876
粉色の甜心
粉色の甜心 2020-12-01 01:13

I\'m quite a newbie in Cocoa, Objective-C and iOS development.

I\'d like to implement a View that is just a splash screen and only last for a short time before routi

10条回答
  •  情歌与酒
    2020-12-01 01:56

    To add splash screen first add that image in your project and then add the following code to your AppDelegate method in the didFinishLaunching method

    [NSThread SleepForTimeInterval:(Time interval)];
    

提交回复
热议问题