这是文件,我将尺寸检查器中的表视图单元格的行高改为240,但它在运行时仍然是默认大小。 https://dl.dropboxusercontent.com/u/73195660/Test%20Auto%20Layout.zip
答案 0 :(得分:0)
它不适用于iOS 7版本的IB 对于Objective-c,在类
中定义此方法- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:
return 80; //return height
}
用于类方法中的Swift定义
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 80 //return height
}
答案 1 :(得分:0)
你只需去Main.StoryBoard。 下图显示了解决问题的步骤。