In my implementation, I had to add a custom label to the cell. However, I realize that by doing so, the cell area that is covered by the custom label will not react to the user’s ‘click’ and hence will not trigger the method “didSelectRowAtIndexPath”.
CustomOHAttributLabel *questionLabel = [[CustomOHAttributLabel alloc]initWithFrame:CGRectMake(10, (60-labelHeight)/2, 280, labelHeight)];
[cell.contentView addSubview:questionLabel];
Is there a way to allow the whole cell area to be responsive to the user’s touch even after adding a Custom label to it?
Make a custom button and put that over the lavel and onClick call the same code, see this