vittore
vittore

Reputation: 17589

Segue configured but not fired

I have the following setup of my storyboard

NC --> TVC --> VC --> TVC --> VC

Problem I face is that first segue from TableViewController to ViewController does work and the second does not. Both are configured as push segues ( actual all transitions are configured this way ) Both tables are filled in dynamically. Just First one works and second not. What could be an issue ? segues has named set up , table cells has ids, event on selecting table cell is firing in both cases, however prepare for segue is not firing in second case.

Thanks in advance

Upvotes: 0

Views: 2267

Answers (1)

LJ Wilson
LJ Wilson

Reputation: 14427

Probably going to need to see some code. Without seeing it, make sure:

  • Make sure you have the Segue wired up to the View
  • You have specified and are using the right Segue identifier
  • Make sure you are calling [self performSegueWithIdentifier:@"segueIdentifier" sender:nil]; in the didSelectRowAtIndexPath method.

Upvotes: 8

Related Questions