欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

视图翻转问题

程序员文章站 2024-01-23 15:07:28
...

//实现shouldAutorotateToInterfaceOrientation方法可以设置图片翻转
//直接return YES 可开启上下左右横向竖向的翻转
//一下代码只支持横向显示不支持竖向翻转

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
     
    //return YES; 

	return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
相关标签: Java