我如何加载网页,例如。 google.com,然后加载覆盖某些样式的本地CSS文件?
我可以做的第一部分是我似乎无法做的那一部分。
最佳答案
像往常一样,答案很简单。
WebPreferences *webPrefs = [WebPreferences standardPreferences];
[webPrefs setUserStyleSheetEnabled:YES];
//Point to wherever your local/custom css is
[webPrefs setUserStyleSheetLocation:[[NSBundle mainBundle] URLForResource:@"style" withExtension:@"css"]];
//Set your webview's preferences
[myWebView setPreferences:webPrefs];