vote up 0 vote down star

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?

flag

1 Answer

vote up 1 vote down
[self.navigationController pushViewController:YourViewController animated:YES]
link|flag

Your Answer

Get an OpenID
or

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