0
在我的項目,我使用Facebook的API「three20」:https://github.com/facebook/three20/TTPhotoViewController:取消旋轉(無取向橫向)
我怎樣才能取消自動旋轉?圖像和縮略圖應始終以縱向顯示,而不是橫向模式。
謝謝!
在我的項目,我使用Facebook的API「three20」:https://github.com/facebook/three20/TTPhotoViewController:取消旋轉(無取向橫向)
我怎樣才能取消自動旋轉?圖像和縮略圖應始終以縱向顯示,而不是橫向模式。
謝謝!
使用shouldAutorotateToInterfaceOrientation:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return NO;
}
它的工作原理!我設置了「返回否;」在TTPhotoViewController.m和TTThumbsViewController.m中!謝謝! – Manni 2011-01-24 18:37:46