I use parsing and get the content as a string. Now I am making an html file through it programmatically. Upload this HTML to your web view. My webview is a preview in a Table View cell.

But now I want to change the font size of the contents of the web view so that the user can see some details.
My code for generating HTML:
NSString * postHTML=[[_parseResults objectAtIndex:indexPath.row]valueForKey:@"summary"]; NSString *close =[NSString stringWithFormat:@"</body></html>"]; NSString *HTMLString = [NSString stringWithFormat:@"%@%@", postHTML,close]; [Web_view loadHTMLString:HTMLString baseURL:nil]; [cell.contentView addSubview:Web_view]; return cell;
How to resize web view content?
source share