I am working on ARC based project. My project is targeted iOS 4.3 I want to force the
Portrait orientation to one of my view. The following doesn't seem to work for me.
[[UIDevice currentDevice] performSelector:NSSelectorFromString(@"setOrientation:") withObject:(id)UIInterfaceOrientationPortrait];
Any help on this?
First of all the viewController to which orientations need to supported must implement the below method passing the supported orientations.
Later to manually rotate the view set the device orientation directly using
if this doesn't work use
remember if you return NO for the setting orientation in
shouldAutoRotate
this may not work. Also check this in both ios5 & ios6, i have tried in ios5.EDIT: For iOS5 or iOS6 where
setOrientation
doesn't existthis works fine, but this may be a private api now.