iPhone. UITableView and pushing view controller
Posted
by Jacek
on Stack Overflow
See other posts from Stack Overflow
or by Jacek
Published on 2010-03-14T09:00:55Z
Indexed on
2010/03/14
9:05 UTC
Read the original article
Hit count: 357
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?
© Stack Overflow or respective owner