TTPhotoViewController:停用旋转(无方向横向)

时间:2011-01-24 18:16:54

标签: iphone objective-c ios three20 ttphotoviewcontroller

在我的项目中,我使用Facebook API“three20”:https://github.com/facebook/three20/

如何停用自动旋转?图像和缩略图应始终以纵向显示,而不是以横向模式显示。

谢谢!

1 个答案:

答案 0 :(得分:1)

使用shouldAutorotateToInterfaceOrientation:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return NO;
}