navigation problem

Joined
Nov 4, 2008
Messages
1
Reaction score
0
Points
1
Hi friends, I am developing a project using navigation bar Controller.
The problem is view Did load method is executed, but the page is not navigating from one to another.
I am Using Tab Bar +navigation+table view. No error is there, no exception, but why it is not navigating, See a part of the code,
plz anyone suggest me


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"trying to push ListofFeedsview");



ListofFeedsController *listoffeedscontroller = [[ListofFeedsController alloc] initWithNibName:mad:"ListofFeeds" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:listoffeedscontroller animated:YES];



}

This stm "Trying to...." is displaying in console.That means control is going to navigation Controlller . But in output it is not navigating to list of feed controller.
Please anyone help me.
Thanks.

Puja
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top