选择并突出显示标签上的文本
我想选择并用特定颜色突出显示标签上的相同文本。这可以通过手势来实现吗? 我必须存储突出显示部分的位置,即使应用程序终止,所以当用户回来时,他们可以看到突出显示的部分
谢谢
I want to select and then highlight the same text on the label with a particular color.Is this be achievable with the help of gestures.
And i have to store the position of the highlighted part,even if the application terminas,so when the user comes back ,they can see that part highlighted
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将手势与
UILabel
结合使用,通过更改UILabel
的背景颜色或文本颜色来突出显示文本。您还可以使用
NSUserDefaults
存储UILabel
的当前状态,并在用户启动您的应用程序时读取它。将
UILabel
状态的isLabelHighlighted
声明为 BOOL。存储
UILabel
的状态。要访问它,您应该使用以下内容。
Yes, you could use the gesture with your
UILabel
for highlighting text by either changing the background color or text color of yourUILabel
.You could also store the current state of your
UILabel
usingNSUserDefaults
, and read it back we user launch your application.Declare an
isLabelHighlighted
as BOOL forUILabel
state.To store state of your
UILabel
.To access it, you should use below.
NSUserDefaults
不合适,因为应用程序可能会意外终止UITapGestureRecognizer
不支持除UIGestureRecognizerStateEnded
之外的任何状态NSUserDefaults
is not suitable, because the application can be terminated unexpectedlyUITapGestureRecognizer
not supported any states, exceptUIGestureRecognizerStateEnded