If you use a webpage to display in a webview
Here is what I would do:
- Create an HTML page title bar add a css file or inline CSS to the header
- Create an HTML body.
- HTML Finite Elements
Add all rows and load WebView from row
NSString *bundlepath = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:bundlepath];
[webView loadHTMLString:html baseURL:baseURL];
source
share