Disable group header interaction (#1328)

prevent clickability of the group header cell in the group members view
pull/1/head
Ronny 9 years ago committed by Michael Kirk
parent 50cd4f54fc
commit b59a0e47d7

@ -93,6 +93,7 @@ static NSString *const kUnwindToMessagesViewSegue = @"UnwindToMessagesViewSegue"
cell.textLabel.text = NSLocalizedString(@"GROUP_MEMBERS_HEADER", @"header for table which lists the members of this group thread");
cell.textLabel.textColor = [UIColor lightGrayColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.userInteractionEnabled = NO;
}
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

Loading…
Cancel
Save