您好我正在开发一个ipad应用程序,我需要显示tableview。所以我们用自定义单元格显示tableview。现在问题是当应用程序处于横向模式时,我的自定义单元格中有一个布局,当应用程序旋转到纵向模式时,应该更改布局。任何帮助将不胜感激。
答案 0 :(得分:0)
试试这个,
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {
//your code for landscape
} else {
//your code for portrait
}
}
这可能对你有帮助.....