首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

改动屏幕的旋转方向

2012-09-24 
更改屏幕的旋转方向- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO

更改屏幕的旋转方向

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
??? // Overriden to allow any orientation.
??? return (interfaceOrientation==UIInterfaceOrientationLandscapeLeft)||(interfaceOrientation==UIInterfaceOrientationLandscapeRight);
}

热点排行