NSAttributedString 可用于将本机应用程序操作与单词连接起来吗?

发布于 2024-11-16 15:20:13 字数 359 浏览 4 评论 0原文

我知道 NSAttributedString 可用于检测超链接和设置样式等。

但是,我需要字符串的某些部分实际“链接”到应用程序中的特定操作。例如,考虑文本“

"this links should open up a native view for [photo 1] and [video 2]"

我不希望照片 1 和视频 2 链接到网络”。我想要一个新的 photoviewcontroller 堆叠在现有导航堆栈的顶部。

这可以通过 NSAttributed String 来实现吗?如果没有,有什么简单的方法可以做到这一点?如果可能的话,我不想使用单独的 UI 控件,因为这在定位方面会非常混乱。

I understand that NSAttributedString can be used for detecting hyperlinks and setting the styling, etc.

However, I need certain parts of the string to actually "link" to specific actions in the app. For example, consider the text

"this links should open up a native view for [photo 1] and [video 2]"

I do not want photo 1 and video 2 to link to the web. i want a new photoviewcontroller to stack on top of the existing navigation stack.

Can this be achieved with NSAttributed String? If not, what is an easy way to do this? I do not want to use separate UI controls if possible, cause that will be very messy in terms of positioning.

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

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

发布评论

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

评论(1

帅的被狗咬 2024-11-23 15:20:13

您可以让您的应用处理自定义 URL 方案。另外,您可以使用 UITextViewJTextView 子类> 创建带有使用自定义 URL 方案的超链接的属性字符串。

You could have your app handle a custom URL scheme. Separately, you would use the JTextView subclass of UITextView to create an attributed string with hyperlinks that use the custom URL scheme.

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