for iOS devices, after set a custom launch time image, when tested on simulator it remains about 4s but when tested on iphone it is hide after less than 1s! Assumed that depends on processor but how to modify that visualization time?? Thanks.
Share
Better option would be to put a sleep of 5 seconds in your
appDidFinishLaunching:method.Statement at the start of your
appDidFinishLaunching:method.Hope this helps you.
Note:- You may want to increase the time from 5 seconds to whatever time that is suitable for you. Thanks
EDIT: You may need to include
#import <unistd.h>statement.