Reputation:
is it possible to rotate Tabbar with all items(tabbar controller) as it is in landscape when particular touch event is happening in one view (portrait) without shouldAutorotateToInterfaceOrientation?
Upvotes: 0
Views: 215
Reputation: 9350
It is possible, but you need to call
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait];
Which is an undocumented api, and it will cause the appstore to regect your app.
FYI, I've created a nifty solution to rotating tabbar controllers, you can read about it here: BAGTabbarController
Upvotes: 0