首先,很抱歉,因为我的英语不好:)这是创建新的TTPostController的代码

postController = [[TTPostController alloc] init];
postController.delegate = self;
self.popupViewController = postController;
postController.superController = self;
[postController showInView:self.view animated:YES];


如果我不旋转设备就可以了

http://i.stack.imgur.com/HBmpn.png

但是当我旋转设备时,它看起来像这样:

http://i.stack.imgur.com/Nt7lq.png

(对不起,我没有足够的声誉来发布图片)

有谁知道如何解决?

编辑:
问题已解决,我已经编写了自己的库,如TTPostController:D

最佳答案

您应该子类化TTPostController并重写should autorotate方法:

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

10-04 13:16