NSAttributedString 可用于将本机应用程序操作与单词连接起来吗?
我知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让您的应用处理自定义 URL 方案。另外,您可以使用
UITextView
JTextView
子类> 创建带有使用自定义 URL 方案的超链接的属性字符串。You could have your app handle a custom URL scheme. Separately, you would use the
JTextView
subclass ofUITextView
to create an attributed string with hyperlinks that use the custom URL scheme.