-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { static NSString *simpleTableIdentifier = @\"cell\"; simpleCell = [
you might want to try
cell.contentView.userInteractionEnabled = NO; had the same issue. disabling userInteraction resolved for me .
cell.contentView.userInteractionEnabled = NO;
I have same issue and I solved it using UIView *objView in place of using CustomTableCell.
Try this will help.