up vote 0 down vote favorite
share [g+] share [fb]

I have a UITableView set up as a navigation controller type deal (like the default in Xcode). I have added an "Add" button which adds an element to the UITableView. When I call -selectRowAtIndexPath: on this new row I just added, it will highlight the row, but the next view is not pushed onto the stack. I assume this is because -selectRowAtIndexPath: does not trigger the -didSelectRowAtIndexPath:. Is there a way to push the next view onto the stack programmatically?

link|improve this question
feedback

1 Answer

[self.navigationController pushViewController:YourViewController animated:YES]
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.