在 iPhone 应用程序中显示 HTML

发布于 2024-11-03 05:32:22 字数 113 浏览 0 评论 0原文

如何在 iPhone 的 textview 中打开 url?

是否可以显示带有链接照片和所有html实体的数据???

How to open url in textview iphone??

Is it possible to show data with links,photos and all html entities???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若有似无的小暗淡 2024-11-10 05:32:23

您可以使用 UIWebView 从文件加载静态包含; html、照片、css、javascript。

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString *htmlString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

[self.webView loadHTMLString:htmlString baseURL:baseURL];

然后只需将“index.html”作为正常的 HTML 标准添加到您的项目中即可。

<html>
   <head><title>Hello</title></head>
   <body>
      <img src="icon.png"/>
      <p>Test</p>
   </body>
</html>

You can use UIWebView to load a static contain from files; html, photo, css, javascript.

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString *htmlString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

[self.webView loadHTMLString:htmlString baseURL:baseURL];

then just add "index.html" as normal HTML standard to your project.

<html>
   <head><title>Hello</title></head>
   <body>
      <img src="icon.png"/>
      <p>Test</p>
   </body>
</html>
扭转时空 2024-11-10 05:32:23

这是 UITextView 控件不可能实现的。使用 UIWebView 或制作您自己的自定义控件。

It's not possible with UITextView control. Use UIWebView or make your own custom control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文