加载 UIWebView - NSData
我如何加载带有 nsdata 的 uiwebview ,就像
NSData *da = [[NSData alloc]initwithContentsofURL:[NSURL URLWithString:@"google.com"]]; //not tested
现在在 UIWebView 中使用这个 NSData 一样。
谢谢
How can I load a uiwebview with nsdata like if have
NSData *da = [[NSData alloc]initwithContentsofURL:[NSURL URLWithString:@"google.com"]]; //not tested
and now use this NSData in UIWebView.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此方法
在 UIWebView 文档中 。这应该允许您在 Web 视图中加载数据。
Check out this method
in the UIWebView documentation. That should allow you to load the data in the web view.