码迷,mamicode.com
首页 > 其他好文 > 详细

uilabe下划线以及响应链接

时间:2014-12-06 15:27:29      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   sp   for   on   div   bs   

1.

        NSMutableAttributedString *content = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"注册即视为同意xxx注册协议"]];

2.

        NSRange contentRange = {0,[content length]};

        [content addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:contentRange];

3.

        label.attributedText = content;


响应链接:

1.

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

    UITouch *touch = [touches anyObject];

    CGPoint points = [touch locationInView:self.view];

    //找到相应的label标签

    UILabel *label = (UILabel *)[self.view viewWithTag:kLinkLabel];

    //判断当前触摸点的范围是否在标签位置所在范围内

    if (points.x >= label.frame.origin.x && points.y >= label.frame.origin.y && points.x <= label.frame.size.width + label.frame.origin.x && points.y <= label.frame.size.height +label.frame.origin.y)

    {

//响应事件

.....

    }

}

uilabe下划线以及响应链接

标签:style   io   ar   color   sp   for   on   div   bs   

原文地址:http://blog.csdn.net/gorgeous_xie/article/details/41775433

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!