I'm working on some project for iOS 5 using Xcode 4.2. I have one UITableViewController and want to perform a segue when user tap on table cell, but destination view controller depends on action performed on that cell. For example, when user tap on cell I would like to load SomeViewController, but when user tap on the same cell in editing mode I would like to load AnotherViewController. Unfortunately, there is no way to configure multiple segues on same cell in Xcode 4.2 storyboard builder, or I just don't get it. Perhaps there is a way to create segue by hand, in code editor. Generally what I want to achieve is to provide user a way to "enter" the item represented by cell using one view controller and "edit" the item represented by the same cell using another view controller. Switching to the second view controller (editor) when in table-edit-mode only was my first though, but maybe there is a better way. Any help will be appreciated.

link|improve this question

40% accept rate
1  
I've just figured it out. It simple, and can be done using Xcode storyboard editor. I've added two segues to my TableViewController pointing to different view controllers, and I'm triggering proper one from code when user selects a cell, and depending on it is done in editing mode or not - I'm triggering proper segue. Earlier I've tried to add multiple segue to same cell witch is not possible. – Darrarski Oct 30 '11 at 2:43
2  
It would be nice if you elaborated on this into an answer, showing exactly how you set the segues. – JohnMerlino Nov 12 '11 at 21:03
I'm facing the same problem, I have two destination view controllers with segues from the source but don't know how to trigger specific segue's??? – Bear Jan 12 at 12:34
feedback

2 Answers

up vote 12 down vote accepted

While looking Storyboard, control-drag from your source View Controller to your Destination view controller. This will create a segue that you can trigger programmatically right from your source View Controller. Ensure that you give you Segue a name. This name is what you will pass into the source View Controller's performSegue:withIdentifier: method.

link|improve this answer
feedback

Where is the code that deciphers which segue is needed. Is it in didSelectCell method? If doing that, why bother with segue, why not just use the old method of pushing and popping view controllers?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.