Swift / tableView 使用 instantiateViewControllerWithIdentifier 传递数据

Swift / tableView pass data with instantiateViewControllerWithIdentifier

我在 tableView 中填充了一组 BackendlessUsers。如何在 didSelectRowAtIndexPath 函数中传递用户?

var deejays: [BackendlessUser] = []

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    print("You selected cell #\(indexPath.row)!")
    self.tableView.deselectRowAtIndexPath(indexPath, animated: true)

    **let user = deejays[indexPath.row]**
    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    let vc = storyboard.instantiateViewControllerWithIdentifier("DJProfileAsUserVC") as! DJProfileAsUserVC

    dispatch_async(dispatch_get_main_queue()) {
        self.presentViewController(vc, animated: true, completion: nil)
    }
}

非常感谢您的帮助。

在 DJProfileAsUserVC 中创建一个 var 用户:DJProfileAsUserVC!,然后是:

let user = deejays[indexPath.row]
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("DJProfileAsUserVC") as! DJProfileAsUserVC
vc.user = user