Search code examples
iphonewarningsuidevicesetorientation

Any way to silence the UIDevice setOrientation warning?


Anyone have a simple way to silence the undocumented UIDevice setOrientation warning?

I found this piece of code that silences the undocumented UIPickerView setSoundsEnabled warning.


Solution

  • just declare the method in a category in the .h or .m file of wherever you use it:

    @interface UIDevice (MyPrivateNameThatAppleWouldNeverUseGoesHere)
    - (void) setOrientation:(UIInterfaceOrientation)orientation;
    @end