ios - get splash image in landscape mode for iPad App -
i unable landscape splash image while launching app in ipad. app supported ipad. tried using 1024x768 image, still not working.even have tried adding uiinterfaceorientation key info.plist
please following code in appdelegate methods.
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { if(is_ipad) { nsnumber *value = [nsnumber numberwithint:uideviceorientationportrait]; [[uidevice currentdevice] setvalue:value forkey:@"orientation"]; } }
it may helpful.
Comments
Post a Comment