Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,我使用 Facebook API“three20”:https ://github.com/facebook/three20/
如何禁用自动旋转?图像和缩略图应始终以纵向而不是横向模式显示。
谢谢!
利用shouldAutorotateToInterfaceOrientation:
shouldAutorotateToInterfaceOrientation:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return NO; }