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

视图翻转有关问题

2012-11-08 
视图翻转问题//实现shouldAutorotateToInterfaceOrientation方法可以设置图片翻转//直接return YES 可开启

视图翻转问题

//实现shouldAutorotateToInterfaceOrientation方法可以设置图片翻转//直接return YES 可开启上下左右横向竖向的翻转//一下代码只支持横向显示不支持竖向翻转- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {         //return YES; return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);}

热点排行