微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

iOS7 iPad仅风景应用程序,使用UIImagePickerController

我相信这是一个常见的问题,许多答案不工作了,很多只是部分,如果你是在iOS7和你的iPad应用程序是景观只,但你想使用UIImagePickerController源UIImagePickerControllerSourceTypePhotoLibrary或UIImagePickerControllerSourceTypeCamera。

如何正确设置,所以它的工作100%?并且你不会得到混合的方向,并避免错误支持的方向与应用程序没有共同的方向,并且shouldAutorotate返回YES”。

解决方法

如果您的iPad应用程式只在所有情况下的风景,只要这样做3个步骤:

1)在您的应用程序委派

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    return UIInterfaceOrientationMaskAll;
}

2)创建类别标题

#import "UIViewController+OrientationFix.h"

@implementation UIViewController (OrientationFix)

- (BOOL)shouldAutorotatetoInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

@end

3)创建类别实现

#import "UIImagePickerController+OrientationFix.h"

@implementation UIImagePickerController (OrientationFix)

- (BOOL)shouldAutorotatetoInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

@end

注意:您不需要在任何地方导入这些类别,只需使用项目编译即可

注意:不需要在任何VC中实现这些方法

注意:无需更改plist支持的方向

这是在任何条件下测试和工作

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐