参考开源中国——双子座教程ios7
http://my.oschina.net/plumsoft/blog/47289
发现 b2c交易在ios6上webview随屏幕旋转了,但是b2c支持横屏的,原因是ios6的委托
iOS6下的
- (BOOL)shouldAutorotateToInterf{
}
这个不会再被调用,取而代之的是这俩个组合:
- (BOOL)shouldAutorotate
{
}
- (NSUInteger)supportedInterfaceOrient
{
}
当然,为了保持对旧版本系统行为的兼容性,不要删掉不用的那个调用。另外还有一个这个preferred朝向也可以加上
- (UIInterfaceOrientation)preferredInterfaceOrient
{
}
b2c交易只支持横屏,网银交易需要支持横竖屏,所以如果在info.plist设置支持的方向,则再同以客户端下两种应用有冲突。解决这个问题的方法就是再前面的基础上再应用的delegate中加入如下回调:
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrient
{
}
简单说明:
UIInterfaceOrientationMa
UIInterfaceOrientationMa
UIInterfaceOrientationMa