我正在尝试向UItableview单元格添加复选标记。我想勾选标记,在左边缘显示像圆形按钮,如下图所示:
我无法使用我的代码在左边距中获得复选标记,而是在右侧显示仅在点按时显示的复选标记。这是我目前的代码:
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
}
}
关于我如何能够像图像一样在左侧显示复选标记的任何想法?