任何人都有一种简单的方法来消除未记录的UIDevice setOrientation警告?
我发现这个piece of code使未记录的UIPickerView setSoundsEnabled警告无声。
答案 0 :(得分:10)
只需在您使用它的.h
或.m
文件的类别中声明该方法:
@interface UIDevice (MyPrivateNameThatAppleWouldNeverUseGoesHere)
- (void) setOrientation:(UIInterfaceOrientation)orientation;
@end
答案 1 :(得分:0)
为什么不订阅方向通知?它们得到支持并同时工作。
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
答案 2 :(得分:0)
也许您应该尝试直接将控制器添加到窗口视图中。这有点无聊但效果很好! http://www.geckogeek.fr/iphone-forcer-le-mode-landscape-ou-portrait-en-cours-dexecution.html: - )