我有一个简单的
IOS应用程序.它包括两个工具栏和地图视图.我只使用默认库(没有可可等).
当我在真正的IPhone5s(IOS8.1)上调试我的应用程序时,当我改变方向时,我的控制台中“无法分配渲染缓冲区存储!0x1741f2c00”(模拟器没问题).状态栏在转向横向时会消失,并在真实设备和模拟器上显示时返回(这是我的一般问题).
应用程序订阅UIDeviceOrientationDidChangeNotification.
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:[UIDevice currentDevice]];
但文本出现在控制台和状态栏中,与呼叫无关
-(void)orientationChanged:(NSNotification *)note { }
谷歌不帮助我.连接到cocoa库的所有链接错误或我不使用的一些图形方法.
对不起我的英语不好.谢谢 :)