Я получил этот лог на устройство перевернуть в iPad.Все отлично работаетКак остановить этот журнал?
<CAEAGLLayer: 0x630f3e0>: calling -display has no effect.
Код:
ViewController *viewCntrl = [[ViewController alloc] init];
viewCntrl.view = gEAGLView;
[the_Window addSubview:viewCntrl.view];
@interface ViewController : UIViewController {
}
@implementation ViewController
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIDeviceOrientationLandscapeLeft || interfaceOrientation == UIDeviceOrientationLandscapeRight)
return YES;
else
return NO;
}
@end
Наблюдается как в устройстве, так и в симуляторе.