UITableView左边距复选标记按钮 - Swift

时间:2017-06-05 17:03:42

标签: ios swift tableview accessory

我正在尝试向UItableview单元格添加复选标记。我想勾选标记,在左边缘显示像圆形按钮,如下图所示:

enter image description here

我无法使用我的代码在左边距中获得复选标记,而是在右侧显示仅在点按时显示的复选标记。这是我目前的代码:

override func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath) {
if let cell = tableView.cellForRowAtIndexPath(indexPath) {
    cell.accessoryType = .None
}
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if let cell = tableView.cellForRowAtIndexPath(indexPath) {
    cell.accessoryType = .Checkmark

}
}

关于我如何能够像图像一样在左侧显示复选标记的任何想法?

1 个答案:

答案 0 :(得分:0)

我已为此为您制作了整个示例应用程序。

just try this. 这就是它的样子。 enter image description here