. (Home Button Down).
" Apple iOS, App Store.
, , .
, , , , , . , , "" ".
.
1)
`- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}
2) info.plist, UILaunchImageFile & insert value as Default-Portrait.png
3) Default.png Default-Portrait.png Default-PortraitUpsideDown.png( 180 )
.
make sure you use UIInterfaceOrientationIsPortrait (interfaceOrientation) in all view controllers within the application, if required. also clean before starting.
source
share