I\'ve read many answers on SO but I can\'t seem to get autorotation working on iOS7.
I only need one view controller to rotate, so I don\'t want to set rotation sett
I've faced such problem - had only one landscape view in my app. I've used below code to to handle that.
#import "objc/message.h" -(void)viewWillAppear:(BOOL)animated{ objc_msgSend([UIDevice currentDevice], @selector(setOrientation:), UIInterfaceOrientationLandscapeLeft); }