我在标签栏控制器顶部显示模态视图标签栏控制器的方向和我的模态视图当前处于纵向模式,我只需要将模态视图方向更改为横向模式, 我尝试使用UIDevice Orientation但没有成功它只有在.plist有UIDeviceOrientationKey时才有效,而且我不希望我的应用程序完全处于横向模式。其次我甚至尝试使用UIApplication setStatusBarOrientation,但我的视图没有响应它,即只有我的设备(模拟器)旋转但视图仍然保持纵向模式,在UIView上使用仿射变换创建一个空视图,我的视图是通过XIB创建的。
请帮助
谢谢Rakesh
答案 0 :(得分:1)
我使用了this,并且在调整时效果很好。
答案 1 :(得分:0)
直到今天我使用了以下解决方案:
-(void)setOrientation:(UIInterfaceOrientation)orientation
{
SEL rotation = @selector(_setRotatableViewOrientation:duration:);
NSMethodSignature * methodSignature = [window methodSignatureForSelector:rotation];
if (methodSignature)
{
NSInvocation * ivc = [NSInvocation invocationWithMethodSignature:methodSignature];
[ivc setTarget:window];
[ivc setSelector:rotation];
// arg0 will be self, 1 will be cmd_ (current method selector)
[ivc setArgument:&orientation atIndex:2];
double duration = 0.4;
[ivc setArgument:&duration atIndex:3];
[ivc invoke];
}
}
-(void)normalizeOrientation
{
UIDeviceOrientation dOrientation = [UIDevice currentDevice].orientation;
int orientation = -1;
switch(dOrientation)
{
case UIDeviceOrientationPortrait:
orientation = UIInterfaceOrientationPortrait;
break;
case UIDeviceOrientationPortraitUpsideDown:
orientation = UIInterfaceOrientationPortraitUpsideDown;
break;
case UIDeviceOrientationLandscapeRight:
orientation = UIInterfaceOrientationLandscapeLeft;
break;
case UIDeviceOrientationLandscapeLeft:
orientation = UIInterfaceOrientationLandscapeRight;
break;
}
if (orientation != -1 && orientation != tabBarController.interfaceOrientation)
[self setOrientation:orientation];
}
但官方AppStore不会接受我的应用程序的新版本 _setRotatableViewOrientation:时间:转型:toView: 未记录API。
因此请注意在商业项目中使用它! Apple新的自动API检查程序将拒绝您的应用程序!