I have an app where you tap a button to take you to a table view that lists articles in an RSS feed. Then, when you select a row in that table view it should go to a web view for the row selected. Everything seems to be getting called but the web view doesn’t appear.
Here is a link to the project:
https://www.dropbox.com/s/7ncfpwm2vor38av/KFBNewsroom%203.zip
you are trying to push WebViewController class through null navigationcontroller instance.
So you need to change few lines of code in ListViewController class.
Use
[self presentModalViewController:webViewController animated:YES];[[self navigationController] pushViewController:webViewController animated:YES]; in – (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath methodin place of
`