vote up 0 vote down star

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.

flag

2 Answers

vote up 1 vote down check

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|flag
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 at 19:31
Cool -- works great! What's the category feature originally designed for? – Epsilon Prime Nov 5 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 at 20:52
To do private method declarations, you can say @interface UIDevice (). – Dustin Voss Nov 6 at 5:34
vote up 0 vote down

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

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
link|flag
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 at 23:54

Your Answer

Get an OpenID
or

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