我正在使用此代碼鎖定iOS應用程序的橫向模式。在iPad中鎖定橫向模式
#pragma mark Orientation handling
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationMaskAllButUpsideDown);
}
-(BOOL)shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}
它在iPhone中正常工作,但它在iPad中無法正常工作。它不會鎖定橫向模式。
需要一些指導。
你也可以只設置在Xcode中總結選項卡中的方位爲您的應用程序。 – 2013-05-06 15:59:04
我需要他們的一些屏幕處於橫向模式。這就是爲什麼我以編程的方式來做這件事...... – lakesh 2013-05-06 16:02:06
你有什麼結果?它是否自動旋轉? – 2013-05-06 16:03:27