有没有办法让UIDevice setOrientation警告静音?

Eps*_*ime 2 iphone warnings uidevice setorientation

任何人都有一个简单的方法来沉默未记录的UIDevice setOrientation警告?

我发现这段代码使未记录的UIPickerView setSoundsEnabled警告无声.

con*_*are 10

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

@interface UIDevice (MyPrivateNameThatAppleWouldNeverUseGoesHere)
- (void) setOrientation:(UIInterfaceOrientation)orientation;
@end
Run Code Online (Sandbox Code Playgroud)