I’m working on an iOS app where I have UIWebviews inside UITableViewCells. The UIWebViews take up about 50% of the cell and the rest of the cell is blank. I need to be able to respond when a user taps in one of my cells. I’ve tried implementing the - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath method, but this only responds when a user taps in a part of my cell that does NOT contain a uiwebview. Is there any way in which I can respond to a tap regardless of where in my cell the user taped?
I’m working on an iOS app where I have UIWebviews inside UITableViewCells. The UIWebViews
Share
you can set
userInteractionEnabledproperty of yourUIWebViewtoNO, but in this case you will not be able to scroll it..