我正在尝试创建一个添加朋友列表,其中用户选择多个表格视图单元格并为每个选择显示一个自定义检查。我最初使用didSelectRowAtIndexPath
,但这并没有给我我正在寻找的结果,因为您可以突出显示多个单元格,但是除非您取消突出显示原始选定的行,否则您将无法再选择。然后我尝试使用didHighlighRowAtIndexPath
,但这似乎不起作用,因为现在我的 indexPath 得到了一个 nil 值。这是我的代码:
override func tableView(tableView: UITableView, didHighlightRowAtIndexPath indexPath: NSIndexPath) {
let indexPath = tableView.indexPathForSelectedRow
let currentCell = tableView.cellForRowAtIndexPath(indexPath!) as! AddedYouCell
let currentUser = PFUser.currentUser()?.username
let username = currentCell.Username.text
print(currentCell.Username.text)
let Friends = PFObject(className: "Friends");
Friends.setObject(username!, forKey: "To");
Friends.setObject(currentUser!, forKey: "From");
Friends.saveInBackgroundWithBlock { (success: Bool,error: NSError?) -> Void in
print("Friend has been added.");
currentCell.Added.image = UIImage(named: "checked.png")
}
}
我该如何解决这个问题?谢谢