1

使用情节提要,我创建了一个包含七行的 UITableview 并UIViewController为每行创建了七个。我想在选择特定行时导航到特定的 UIViewController。如何使用 Segue 方法导航 UIViewController?

我尝试了很多次,但没有奏效。

4

1 回答 1

1

You can connect seven segues from your UITableViewController to your seven UIViewController. Each segue sets a unique identifier. Then in the tableview:didSelectRowAtIndexPath: method, you can use perfromSegueWithIdentifier:sender: method to fire the segue.

于 2012-10-27T08:23:49.940 回答