Iam目前正在开发一个iPad项目,我可以在预制的“基于拆分视图的应用程序”之上构建我的代码。 当我将iPad旋转到横向模式时,我试图在UITableViewController上方放置一个图像,但是当我在纵向模式下显示时,我不知道是否可以在弹出菜单中显示图像。 我不能在IB中放置UIImageView,所以试着从代码中做到这一点。
以下是我的表格图片:1
答案 0 :(得分:0)
在初始化视图时以编程方式创建和定位图像,并在视图控制器中实现以下方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
imageOverTableview.hidden = !UIInterfaceOrientationIsLandscape(interfaceOrientation);
return YES;
}