0

我正在使用 iPad 应用程序中的 UISplitViewController。目前我发现了两个问题: 1.我无法修改主视图的宽度 2.我尝试在主视图中使用自定义单元格,但似乎无法调整单元格的宽度和高度。

您对标准 UISplitViewController 的两个问题有什么想法吗?

谢谢,迈克

4

1 回答 1

1

1) 您不能更改详细视图的大小。请检查以下链接,从该链接您会得到很多信息: Change the width of Master in UISplitViewController

2) 使用 heightForRowAtIndex 委托方法。从该方法返回 60

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
 {
   return 60.0;
 }
于 2012-06-18T16:31:07.647 回答