我在嘗試segue
數據從UIViewController
到UITableViewController
。 UIViewController
中的數據來自PFTableViewController
,我希望將該數據傳遞給另一個TableViewController
。從UIViewController繼承到UITableViewController
傳遞給ViewController didSelect
方法被使用,但我不知道如何從viewController
延伸到TableViewController
。
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let destinationToFVC:ViewController = self.storyboard!.instantiateViewControllerWithIdentifier("FVCont") as! ViewController
if let indexPath = self.tableView.indexPathForSelectedRow {
let row1 = Int(indexPath.row)
destinationToFVC.currentObject = objects?[row1] as! PFObject!
}
navigationController?.pushViewController(destinationToFVC, animated: true)
}
我是新手編程。
謝謝@Victor,但有一個問題,我不能使用上面的語法,因爲我想從'UIViewController'繼承到'UITableViewController',並且上面的語法可以在'UITableViewController'協議中使用,根據多少直到現在我已經學會了'Swift和Xcode' –
@SabhaySardana你想如何從UIButton手動或其他方式創建一個Segue? –
與ViewController中的按鈕。 –