0

我创建了一个 UISplitView,在以横向模式加载 splitView 后,我使用 presentModalView 显示了一个 modalView,我的问题是 modalView 始终处于纵向模式,找不到解决方案。

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

它给了我横向但使用

UIDeviceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]

给我肖像。(不适用于 4.2)

谢谢,

4

1 回答 1

0

我正在使用 NSTimer 并使用它和它的工作来减轻我的功能,这有点棘手,但这是我现在找到的唯一解决方案。

[NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(loadingModal:) userInfo:nil repeats:NO];
于 2011-02-17T05:31:32.263 回答