iOS:带有 RTF 的警报视图(粗体、URL 等)

发布于 2024-11-25 00:19:47 字数 279 浏览 1 评论 0原文

我需要向用户显示一条消息。

然而,这是一条相当长的消息。为了清楚起见,我需要将其分成段落并使用粗体作为标题。我还需要提供“更多信息”的网络链接。

我的最佳解决方案是什么?

目前我能想到的就是创建一个 UIAlertView 的类似物,它使用 UIWebView + UIButton

并且 Web 视图从包中加载 RTF 文件。

如果我在设置为 50% Alpha 的全屏视图中创建它,它将淡出后面的任何窗口......但如果有可用的东西,我宁愿不编写自己的组件。

I need to display a message to the user.

However, it is quite a long message. Really to be clear I need to split it into paragraphs and use Bold for headings. Also I need to supply a web link for 'more information'.

What is my best solution path?

All I can think of at the moment is to create an analogue of a UIAlertView that uses a UIWebView + a UIButton

And the web view loads an RTF file from the bundle.

If I create this inside a full-screen view set to 50% Alpha, it will fade out whatever window is behind... but I would rather not code up my own component if there is something already available.

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

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

发布评论

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

评论(1

弥枳 2024-12-02 00:19:47

你走在正确的轨道上。使用 UIView、UIWebView 和 UIButton 创建一个 UIViewController 以呈现透明视图。您也许可以使用 UIPopoverController。

Web 视图内容还需要设置透明背景。

You are on the right track. Create a UIViewController with a UIView, UIWebView and UIButton(s) to present the transparent view. You may be able to use UIPopoverController.

The web view content will need to also set a transparent background.

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