iPhone. UITableView and pushing view controller
- by Jacek
Hello.
I have a working UITableView in my view controller. It is being successfully populated and seems to be fine. However, when I try using following function, new view is not loaded (function is called, I get output from NSLog):
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"asf");
[self.navigationController pushViewController:sendRequestFavoriteController animated:YES];
}
What might be a problem? I get no compilation or debugging errors/warnings. Maybe UITabBar's navigation controller?