Objective-C:如何检测字符串中的 http URL?
Let's assume I have the string:
"I love visiting http://www.google.com"
How can I detect the token, http://www.google.com?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
NSDataDetectors
这些是iOS4中添加的,非常有用。您想要使用NSTextCheckingTypeLink
创建一个数据检测器并让它完成它的工作。You can use
NSDataDetectors
These were added in iOS4 and are quite useful. You want to create a data detector with theNSTextCheckingTypeLink
and let it do its thing.你可以这样做:
You could do something like: