我正在使用iPad应用程序中的UISplitViewController。 目前,我发现了两个问题: 1.我无法修改主视图的宽度 2.我尝试在主视图中使用自定义单元格,但似乎无法调整单元格的宽度和高度。
您对标准UISplitViewController的两个问题有什么想法吗?
谢谢, 麦克
答案 0 :(得分:1)
1)您无法更改详细视图的大小。 请检查以下链接,从该链接您将获得很多信息: Change the width of Master in UISplitViewController
2)使用heightForRowAtIndex委托方法。从该方法返回60
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 60.0;
}