UITableView don't react on a tap
Posted
by aspcartman
on Stack Overflow
See other posts from Stack Overflow
or by aspcartman
Published on 2010-04-12T20:20:09Z
Indexed on
2010/04/12
20:23 UTC
Read the original article
Hit count: 316
I have a fully working grouped tableview. But when i just tap on a cell - nothing happens. willSelectRowAtIndexPath is not even being called. All outlets are set correctly, userInteractions are enabled, tableView is the only view on a page. Googling for hours made no success. Everyone has a selection feature from the begining and someone even tries to ged rid of it. Help, please.
Cell creation:
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"FriendCell"];
© Stack Overflow or respective owner