以不同方向更改自定义uitableviewcell内容的位置

时间:2012-09-11 13:15:24

标签: ipad ios5 uitableview customization

您好我正在开发一个ipad应用程序,我需要显示tableview。所以我们用自定义单元格显示tableview。现在问题是当应用程序处于横向模式时,我的自定义单元格中有一个布局,当应用程序旋转到纵向模式时,应该更改布局。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

试试这个,

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
    if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {
        //your code for landscape
    } else {
        //your code for portrait
    } 
}

这可能对你有帮助.....