Create words starting with sign '@' Clickable in ios

我只是一个虾纸丫 提交于 2019-12-04 15:31:38

Answer : GLTapLabel

There is a method named -drawTextInRect in class named GLTapLabel which contains one line of code :

BOOL hot = [word hasPrefix:@"#"] || [word hasPrefix:@"@"];

You just have to change the prefix values here and you will have your desired result.


There is one delegate method named -labledidSelectedHotWord. You can write here the code about the action you want to perform when the word with desired prefix is clicked. In your case, you can write your navigation code in this method.


Here is the Screenshot :

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!