在模拟器和 iPhone 上,在 iOS 6 和 iOS 7 中,我注意到 UIActivityViewController 不会倒置旋转。无论我是从通用 viewController 还是从根目录呈现它都没有关系。
这种行为弄乱了我的界面...
到目前为止,我最好的尝试是防止在设备倒置时显示 UIActivityViewController 并在显示 UIActivityViewController 时阻止旋转。无论如何,我找不到任何关于这个问题的引用。
这是预期的行为吗?
您是否知道避免这种行为的更好方法,或者防止我的界面损坏的更好方法?
Best Answer-推荐答案 strong>
UIActivityViewController 可以进行所有旋转,因为它是 UIViewController 的子类,具有旋转方法。
1) 在您的 UIActivityViewController.m 文件中添加方法:
- (BOOL)shouldAutorotate
{
return YES;
}
与
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}
2) 在您的 info.plist 中检查您的应用程序是否支持您想要的方向。
在 iOS 6 及更高版本中,您的应用支持在应用的 Info.plist 文件中定义的界面方向。 View Controller 可以覆盖supportedInterfaceOrientations 方法来限制支持的方向列表。通常,系统仅在窗口的 Root View Controller 或呈现为填满整个屏幕的 View Controller 上调用此方法; subview Controller 使用其父 View Controller 为它们提供的窗口部分,不再直接参与有关支持哪些旋转的决策。
应用的方向掩码和 View Controller 的方向掩码的交集用于确定 View Controller 可以旋转到哪些方向。**
关于ios - 颠倒呈现 UIActivityViewController,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20264595/
|