如何将选定的 uitableview 行发送到新创建的组

how do I send selected uitableview rows to a newly created group

我找不到这方面的任何信息。我想将我的 selected 行(带有复选标记的行)作为新创建的组发送到我的 firebase 数据库中。我在 tableview 之外创建了一个 "Create group" 按钮。我很想获得更多有关如何从 selected 行传递数据的信息或资源,但我无法找到有关该主题的任何内容。我看到很多关于如何 select 和 deselect 带有复选标记的行的信息,但是没有关于将信息从 selected 复选标记的行发送到数组或在线数据库的信息就我而言。

class FriendsViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

 var userList = [Users]()

@IBOutlet weak var myTableView: UITableView!

@IBAction func createGroup(_ sender: Any) {
}
final let urlString = "https://api.lookfwd.io/v1/test/users"

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return userList.count

}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let myCell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! MyTableViewCell
    myCell.selectionStyle = UITableViewCellSelectionStyle.none
    myCell.nameLabel.text = userList[indexPath.row].name
    return myCell
}



override func viewDidLoad() {
    super.viewDidLoad()

    self.downloadJsonWithTask()

}

 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if myTableView.cellForRow(at: indexPath)?.accessoryType == UITableViewCellAccessoryType.checkmark{

        myTableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.none}
    else{
        myTableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.checkmark
    }

            }



func downloadJsonWithTask() {

    let url = NSURL(string: urlString)

    var downloadTask = URLRequest(url: (url as URL?)!, cachePolicy: URLRequest.CachePolicy.reloadIgnoringCacheData, timeoutInterval: 20)

    downloadTask.httpMethod = "GET"

    URLSession.shared.dataTask(with: downloadTask, completionHandler: {(data, response, error) -> Void in

        if let response = data {
            if let jsonData = try? JSONSerialization.jsonObject(with: response, options: .allowFragments) as? [String:Any] {

                if let dataArray = (jsonData as AnyObject).value(forKey: "users") as? [[String:Any]] {
                    for data in dataArray{
                        let newUser = Users(data: data)
                        self.userList.append(newUser)
                        print(jsonData!)
                    }
                }
                OperationQueue.main.addOperation({
                    for use in self.userList {
                        print(use.name ?? "")
                    }
                    self.myTableView.reloadData()

                })

                print(jsonData!)
            }
        }
    }).resume()
}

}

您的用户对象存储在数组 userList 中。您只需要像 thid

一样记录点击索引
var selected = [String]()
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if myTableView.cellForRow(at: indexPath)?.accessoryType == UITableViewCellAccessoryType.checkmark{
        myTableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.none
        let currentUser = userList[indexPath.row]
        selected = selected.filter { [=10=] != currentUser.name}
    }else{
        myTableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.checkmark
        let currentUser = userList[indexPath.row]
        selected.append(currentUser.name)
    }
}

之后,当你想获取所有选中的名字时

for username in self.selected{
    print(username ?? "")
}