objective c - ios uiwebview in uitableview prevents scroll/touches -


i have uiwebview in uitableview cell. load html string in uiwebview. have set viewport tag on html content. when zoom webview & scroll webview vertically, doesn't scroll.

    nsstring *str=[nsstring stringwithformat:@"<html><head><meta name=\"viewport\" content=\"width=device-width\"</head><body>%@</body></html>",content]; [cell.webview loadhtmlstring:str baseurl:nil]; cell.webview.scalespagetofit = yes; 


Comments