我有一个使用IBM Worklight构建的混合应用程序(我主要关注iOS平台,因为我已经有一个适用于Android的解决方案,它工作正常).我添加了一个cordova插件来访问设备功能.我的应用程序需要在除一个屏幕之外的所有屏幕上设置为纵向.在一个屏幕(视图)上,我需要支持横向和纵向.然而,当我导航到另一个屏幕时,我只需要恢复到肖像,但在我的许多尝试中,它仍然保持在风景中.
我正在使用supportedInterfaceOrIEntations和shouldautorotate方法来锁定&解锁和切换只支持肖像或风景&肖像.
注意:我的应用程序只有一个包含webvIEw的视图控制器,所以我不能使用解决方案来解除和呈现模态视图控制器.
我还在iOS中查看过使用transform进行强制旋转的其他线程,但这似乎也不起作用. Is there a documented way to set the iPhone orientation?
(我的应用支持iOS7及以上版本)
唯一对我有用的是
[UIDevice currentDevice] setorIEntation:UIInterfaceOrIEntationPortrait];
和
objc_msgSend([UIDevice currentDevice],@selector(setorIEntation:),UIInterfaceOrIEntationPortrait );
但是,如果因为私人API而使用这些应用程序,Apple将拒绝我的应用程序.
当设备旋转到横向时,还有其他方法可以强制定位到纵向吗?
解决方法 我知道在ios的phonegap插件中强制定位的一种奇怪方式.我在答案中添加了ios和Js代码.IOS
下面是我用来设置count1 = 1的插件,用于强制定位.
Helloworldplugin.m
#import "HelloworlPlugin.h"@implementation HelloworlPluginint count=0;-(voID)sayhello:(NSMutableArray *)arguments withDict:(NSMutableDictionary *)option{ [arguments pop]; Nsstring *responseString=[Nsstring stringWithFormat:@"%@",[arguments objectAtIndex:0]]; if([responseString isEqualToString:@"1"]) { count=1; } else { count=0; } NSLog(@"Zero %@",responseString);}-(int)count1{ NSLog(@"count= %d",count); if(count<1) { Cv=0; } else { Cv=1; } NSLog(@"%d",Cv); return Cv;}@end
下面是MainVIEwcontroller.h,它具有shouldautorotatetoInterfaceOrIEntation函数,其中基于count1的值我只在此代码中强制使用portrait,您可以为count1设置各种值,并根据这些值强制定位她
CDVMainVIEwController.h
- (BOol)shouldautorotatetoInterfaceOrIEntation:(UIInterfaceOrIEntation)interfaceOrIEntation{ HelloworlPlugin *object=[[HelloworlPlugin alloc] init]; int fValue=[object count1]; NSLog(@"%d",fValue); if(fValue==1) { return (interfaceOrIEntation ==UIInterfaceOrIEntationPortrait); } else { return true; }}
clickbutton()是用于转换为portrait的按钮.在上述目标c编程中,我传递的参数1被设置为count 1.
function clickbutton(){ cordova.exec(success,failure,"HelloworlPlugin","sayhello",[1]);}
我刚刚给出了一个例子,你可以根据自己的需要进行一点点使用.
总结以上是内存溢出为你收集整理的cordova – 当设备处于横向(水平翻转)时,强制定位到纵向全部内容,希望文章能够帮你解决cordova – 当设备处于横向(水平翻转)时,强制定位到纵向所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)