在一个 UIWebView 中加载图像和文本
嗨,大家好。我需要在 UIWebView 中加载图像和文本,我加载了这样的图像
NSData *imageData = [[NSData alloc] initWithContentsOfURL:imageUrl]; [myWebView loadData:imageData MIMEType:@"application/jpg" textEncodingName:nil baseURL:nil];
和这样的文本
[myWebView loadHTMLString:self.text baseURL:nil];
但是当我把它们放在一起时我只看到图像,因为它是代码中的最后一个。 如何将(图像和文本)加载到一个 UIWebView?谢谢
HI guys. I need to load image and text in UIWebView, I loaded image like that
NSData *imageData = [[NSData alloc] initWithContentsOfURL:imageUrl]; [myWebView loadData:imageData MIMEType:@"application/jpg" textEncodingName:nil baseURL:nil];
and text like that
[myWebView loadHTMLString:self.text baseURL:nil];
But when I put it together I see just image, because it is the last in code.
How can I load both (image and text) to one UIWebView? Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以动态创建 html 页面并将其加载到 UIWebView 中:
You can create html-page dynamically and load it into UIWebView: