【发布时间】:2015-04-07 09:56:02
【问题描述】:
您好,我不想将 css 样式添加到 UIWebView
CSS 代码
<style>body{ background: none; } .sepLine{ display: none; } .wrapper{ width: 320px; }</style>
UIWebView 代码
NSString *fullURL = @"http://parentportal.npsinternational.edu.sg/nps/Dashboard.aspx";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
我该怎么做
【问题讨论】:
标签: ios css objective-c uiwebview