Hi there,
I used the code below to navigate between UITableViewController.
SearchAthleteNameViewController *searchAthletesVC = [[[SearchAthleteNameViewController alloc] initWithNibName:storyLink bundle:nil] autorelease];
[self.navigationController pushViewController:searchAthletesVC animated:YES];
Where SearchAthleteNameViewController is an instance of another UItableViewController (another .xib file).
Now, I have to navigate to NSObject from an UItableViewController. I tried using the same, i cannot find the method, initwithNibName to make it navigate. And also it shows an warning in the next line & a cfrunloop prevails.
can some one suggest/send sample code for me to make it run? Please!
I used the code below to navigate between UITableViewController.
SearchAthleteNameViewController *searchAthletesVC = [[[SearchAthleteNameViewController alloc] initWithNibName:storyLink bundle:nil] autorelease];
[self.navigationController pushViewController:searchAthletesVC animated:YES];
Where SearchAthleteNameViewController is an instance of another UItableViewController (another .xib file).
Now, I have to navigate to NSObject from an UItableViewController. I tried using the same, i cannot find the method, initwithNibName to make it navigate. And also it shows an warning in the next line & a cfrunloop prevails.
can some one suggest/send sample code for me to make it run? Please!