-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detect tap on hashtag and mention #175
Comments
@psharanda any help ? |
You may want to use AttributedLabel view, which is a part of AtributikaViews lib |
@psharanda iam using AttributedLabel, here it have this DetectionTuner property. let hashtag = DetectionTuner { this library previously had this, which seems to be missing now or iam i missing it ? |
Ok, I see now. AttributedLabel is now working only with untyped string urls and not aware about Atributika lib at all and can be used without it. Check AttributedLabelDemoViewController.swift for the example. Using DetectionTuner tuner you can transform a mention or hashtag into any url format you want e.g. "hashtag://my_hashtag" and then in tap handler you can check the url schema and do the stuff you wanted to do for hashtags. |
let hashtag = DetectionTuner {
Attrs(self.hashMentionAttr).akaLink($0.text)
}
Any help ?
The text was updated successfully, but these errors were encountered: