I have text file with some random text and i want to display it in webview with increased font,my question is can i change the font size. here is my code i have implemented.
NSString * myString = [NSString stringWithContentsOfFile:_urlPath encoding:NSUTF8StringEncoding error:nil];
[self.webView loadHTMLString:htmlString baseURL:nil];
[self.webView setScalesPageToFit:YES];
self.webView.autoresizesSubviews = YES;