in my apps splash-screen not run on device.but on simulator its work i give name default.png.then only on simulator it works .
also application didFinishLaunchingWithOptions:method i add ing on window ,then work only for simulator. i adjust size by 768*1024.for device .but still not working..anybody has idea abt this let me know
thanks
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:
(NSDictionary *)launchOptions
{ UIImageView *img=[[UIImageView alloc] initWithFrame:CGRectMake(0,0,768,1024)];
img.image=[UIImage imageNamed:@"splash_CARD.png"];
[self.view addSubview:img];
[self DownLoadProfileInfo];
[self.window makeKeyAndVisible];
return YES;
}
Add File to Resources Folder and Chang it’s name as “default.png”..
You r trying an imageView as a splash screen..