I have a UIWebView as a cell in a UITableView. I know this is not recommended, but the WebView is not scrolling, so the recommendation does not matter. I use the web view to style and theme the cell.
The problem I have is that in iOS 6, when I set userInteractionEnabled to NO, the UIWebView does not pass touch events up the responder chain. The table view never calls didSelectRowAtIndexPath. I should note this works fine in iOS 5.
My question is, has Apple changed how UIWebView handles userInteractionEnabled?
Any commentary would help.
This is where I make the call. It is being called on the correct cell instance (I only have 1 WebView cell in the table)
webView.userInteractionEnabled = NO;