回复: 0

【SDK接入】iOS 6调用登录闪退

[复制链接]
test修改

75

主题

0

魅力

9万

经验

跳转到指定楼层
楼主
发表于 2013-6-17 13:46:19 |只看该作者 |倒序浏览
对于iOS屏幕方向的支持,因iOS 6里对以前的方法完全不支持,必须使用新的方法.
请在游戏的主ViewController里加上:
- (BOOL)shouldAutorotate
{
    return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape;
}

在游戏的AppDelegate里加上:
- (NSUInteger)applicationUIApplication *)application supportedInterfaceOrientationsForWindowUIWindow *)window
{
    return UIInterfaceOrientationMaskAll;}
收藏收藏0 分享分享
返回列表 发新帖
您需要登录后才可以回帖 登录 | 立即注册

站点地图| 帮助中心| 微信客服| 九游手机游戏论坛 ( 粤ICP备13078412号 粤网文[2014]0209-059号 广州爱九游信息技术有限公司 )

GMT+8, 2024-4-27 05:54 , Processed in 0.080757 second(s), Total 8, Slave 8 queries , Redis On.

《九游隐私权政策》

回顶部