Please Help!
I'm trying to program a row in UITableview (added as a subview of another object) to show/hide other objects when tapped. this is how i tried to do it
This is unsuccessful. I'd realllly appreciate a push in the right direction.
thanks
I'm trying to program a row in UITableview (added as a subview of another object) to show/hide other objects when tapped. this is how i tried to do it
Code:
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if ([groupList didSelectRowAtIndexPath:0]) {
crowdInfoTwo.hidden=NO;
}
thanks
Last edited by a moderator: