在故事板中,我目前有一个自定义的tableview单元格,其中包含详细的公开按钮。我增加了单元格的大小和单元格内文本标签的字体,但现在细节公开按钮似乎太小了。我认为细节公开按钮会自动增大,因为我使细胞更大,但事实并非如此。有没有办法增加详细披露按钮的大小?
答案 0 :(得分:1)
iOS中几乎所有内容的默认规则:如果某些标准不起作用,则必须实现自定义规则。因此,使用自定义附件视图的最简单方法是:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = // get cell
let button = UIButton(type: .system)
button.setImage(<your big image here>, for: .normal)
button.sizeToFit()
cell.accessoryView = button
// configure rest of the cell
return cell
}