3

在我的 iPhone 应用程序中,我想以不同颜色显示标签内的链接(如超链接)。

当有人点击链接时,它应该在 Safari 浏览器中打开该链接。

我该怎么做?

4

3 回答 3

2

听到的是两个示例示例代码链接,希望对您有所帮助:-

https://github.com/twotoasters/TTTAttributedLabel

http://furbo.org/stuff/FancyLabel_1.0.zip

或者你也可以这样做

将标签的 userInteractionEnabled 设置为 YES 并为其添加手势识别器:

myLabel.userInteractionEnabled = YES;

    UITapGestureRecognizer *gestureRec = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(openUrl:)];
    gestureRec.numberOfTouchesRequired = 1;
    gestureRec.numberOfTapsRequired = 1;
    [myLabel addGestureRecognizer:gestureRec];
    [gestureRec release];

Then implement the action method:

    - (void)openUrl:(id)sender
    {
        UIGestureRecognizer *rec = (UIGestureRecognizer *)sender;

        id hitLabel = [self.view hitTest:[rec locationInView:self.view] withEvent:UIEventTypeTouches];

        if ([hitLabel isKindOfClass:[UILabel class]]) {
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:((UILabel *)hitLabel).text]];
        }
    }
于 2012-12-20T05:50:53.713 回答
1

我们使用正则表达式来检查链接

NSString *urlRegEx =@"((http|https)://)?((\\w)*|([0-9]*)|([-|_])*)+([\\.|/]((\\w)*|([0-9]*)|([-|_])*))+";
NSPredicate *urlTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", urlRegEx];
if ([urlTest evaluateWithObject:lbl.text])
{
       //set color of lbl
}
于 2012-12-20T05:50:50.477 回答
0

您无法在标签中识别任何内容来了解​​超链接。

制作一个看起来像标签的自定义按钮(仅文本和背景为 clearColor),以产生效果。

于 2012-12-20T05:44:28.483 回答