2

任何人都有一种简单的方法可以使未记录的 UIDevice setOrientation 警告静音?

我发现这段代码可以消除未记录的 UIPickerView setSoundsEnabled 警告。

4

3 回答 3

10

只需在您使用它的任何地方的.h或文件中的类别中声明该方法:.m

@interface UIDevice (MyPrivateNameThatAppleWouldNeverUseGoesHere)
- (void) setOrientation:(UIInterfaceOrientation)orientation;
@end
于 2009-11-05T19:24:32.570 回答
0

为什么不只订阅方向通知?它们得到支持并同时工作。

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
于 2009-11-05T23:10:23.073 回答
0

也许您应该尝试将控制器直接添加到窗口视图中。这有点无聊,但效果很好!http://www.geckogeek.fr/iphone-forcer-le-mode-landscape-ou-portrait-en-cours-dexecution.html :-)

于 2010-09-10T14:32:09.447 回答