iphone – iOS – QLPreviewController – 如何阻止QuickLook旋转?

iphone – iOS – QLPreviewController – 如何阻止QuickLook旋转?,第1张

概述我有QuickLook(QLPreviewController)几乎按照我想要的方式工作,但由于图像特征,我不希望它旋转成纵向.我在“shouldAutoRotateToInterfaceOrientation”方法中配置它只返回yes用于横向旋转(参见下面的代码详细信息)但它仍然旋转到肖像. 注意:shouldAutoRotateToInterfaceOrientation是一个直接副本,在我的 我有QuickLook(QLPrevIEwController)几乎按照我想要的方式工作,但由于图像特征,我不希望它旋转成纵向.我在“shouldautoRotatetoInterfaceOrIEntation”方法中配置它只返回yes用于横向旋转(参见下面的代码详细信息)但它仍然旋转到肖像.

注意:shouldautoRotatetoInterfaceOrIEntation是一个直接副本,在我的所有视图控制器中用于此项目,它在其他视图控制器中工作.

////  documentVIEwer.m//#import "documentVIEwer.h"@implementation documentVIEwer@synthesize documents;// OverrIDe to allow orIEntations other than the default portrait orIEntation.- (BOol)shouldautorotatetoInterfaceOrIEntation:(UIInterfaceOrIEntation)interfaceOrIEntation {    if (interfaceOrIEntation == UIInterfaceOrIEntationLandscapeleft)        return YES;    else if (interfaceOrIEntation == UIInterfaceOrIEntationLandscapeRight)        return YES;    else         return NO;}- (voID)vIEwDIDLoad {    [super vIEwDIDLoad];}//-(voID)vIEwWillAppear:(BOol)animated {//  //  self.userInteractionEnabled = YES;//}//nessary for Enabling User Interaction- (BOol)canBecomeFirstResponder {    return YES;}-(voID) createList:(Nsstring *) document {    documents =     [[NSArray arrayWithObjects:document,nil] retain];}-(NSInteger) numberOfPrevIEwItemsInPrevIEwController: (QLPrevIEwController *) controller {    return [documents count];}- (ID <QLPrevIEwItem>) prevIEwController: (QLPrevIEwController *) controller prevIEwItemAtIndex: (NSInteger) index {    return [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:[documents objectAtIndex:index] ofType:nil]];}@end
解决方法 在AppDelegate.m中替换

return UIInterfaceOrIEntationMaskAll;

return UIInterfaceOrIEntationMaskLandscape;

像这样:

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrIEntationsForWindow:(UIWindow *)window{    return UIInterfaceOrIEntationMaskLandscape;}
总结

以上是内存溢出为你收集整理的iphone – iOS – QLPreviewController – 如何阻止QuickLook旋转?全部内容,希望文章能够帮你解决iphone – iOS – QLPreviewController – 如何阻止QuickLook旋转?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1080749.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存