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

UITableView left margin checkmark buttons - Swift

我正在尝试为我的 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

}
}

关于如何让复选标记像图片一样显示在左侧有什么想法吗?

我已经为您制作了完整的示例应用程序。

just try this. 这就是它的样子。