我正在製作基於導航的應用程序,除了支持所有方向的ZoomPictureViewController
(放大,縮小圖像)之外,我只需要縱向定位。視圖不旋轉
我提出ZoomPictureViewController
和shouldAutorotateToInterfaceOrientation:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
返回YE
秒,但我沒有得到任何旋轉。我知道shouldAutorotateToInterfaceOrientation
,willRotateToInterfaceOrientation
,RotateToInterfaceOrientation
只得到所謂的電流/可見視圖控制器上,但這不是我的情況發生。我已經通過放置斷點和NSLog
進行檢查。
刪除'return YES;'的註釋並測試它。 – 2012-03-21 11:08:22
您是否在info.plist中更改了支持的方向? – 2012-03-21 11:14:39
http://stackoverflow.com/a/9788125/204826 – jnic 2012-03-21 11:16:15