I am making an epub reader, into which I am loading HTML pages in my webview
:
[_webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:_pagesPath]]];
Now I want to change background color and and text color of my the HTML pages. I changed background color of my webview using,
self._webview.backgroundColor = [UIColor blackColor];
self._webview.opaque = NO;
That's working, but I also want to change the text color of my webview. How do I do this?