iOS:带有 RTF 的警报视图(粗体、URL 等)
我需要向用户显示一条消息。
然而,这是一条相当长的消息。为了清楚起见,我需要将其分成段落并使用粗体作为标题。我还需要提供“更多信息”的网络链接。
我的最佳解决方案是什么?
目前我能想到的就是创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你走在正确的轨道上。使用 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.