is it possible to rotate Tabba开发者_运维百科r with all items(tabbar controller) as it is in landscape when particular touch event is happening in one view (portrait) without shouldAutorotateToInterfaceOrientation?
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
精彩评论