หากคุณใช้prepareForSegue:sender:
คุณจะไม่มีการเปลี่ยนแปลงมากนักหากคุณตัดสินใจที่จะทริกเกอร์การทำตามในภายหลังจากการควบคุมบางอย่างนอกมุมมองตาราง
prepareForSegue:sender:
ข้อความจะถูกส่งไปยังตัวควบคุมมุมมองปัจจุบันดังนั้นผมขอแนะนำบางอย่างเช่นนี้
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Assume self.view is the table view
NSIndexPath *path = [self.tableView indexPathForSelectedRow];
DetailObject *detail = [self detailForIndexPath:path];
[segue.destinationViewController setDetail:detail];
}
ใน Swift:
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
let path = self.tableView.indexPathForSelectedRow()!
segue.destinationViewController.detail = self.detailForIndexPath(path)
}