Reputation: 942
Im new to storyboard. Im trying to create a tableview with static cells (1 section with 2 rows). Now i need to go to different views on taping the rows.
How can i connect the view in Interface builder??
This method is not required as im not passing any data to the next view.
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
NSLog(@"%@",segue.identifier);
}
I need to show static views on tapping the row of the table.
In interface builder im not able to create more than 1 segue for a section.
Upvotes: 0
Views: 267
Reputation: 6103
prepareForSegue is different thing. You may use segues too (think of segue as about descriptor of your controller-to-controller move) but it is a different workflow. There is tons of documentation on this.
Upvotes: 1