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.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

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
link|improve this answer
1  
… and hope that Apple doesn't use the "(private)" category on UIDevice. I'd probably call it "(MyUndocumentedMethods)" or something. – BJ Homer Nov 5 '09 at 19:31
Cool -- works great! What's the category feature originally designed for? – Epsilon Prime Nov 5 '09 at 19:57
It is meant for extending the functionality of a class. BJ Homer is right… you should not use (private). I will change in the code – coneybeare Nov 5 '09 at 20:52
To do private method declarations, you can say @interface UIDevice (). – Dustin Voss Nov 6 '09 at 5:34
feedback

Why not just subscribe to the orientation notifications? They are supported and work at the same time.

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
link|improve this answer
Heh, I need to change the orientation, not listen to it. The problem stems from having one orientable view in the middle of a chain of navigation. When I leave the rotated view for the view that can only take the portrait orientation I have to force the change because unless there is an orientation change the upcoming view that only can be in portrait mode will be rotated. – Epsilon Prime Nov 5 '09 at 23:54
feedback

Maybe you should try to add your controller to the window view directly. It's a bit boring but it works well ! http://www.geckogeek.fr/iphone-forcer-le-mode-landscape-ou-portrait-en-cours-dexecution.html :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.