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

UILable点击事件

时间:2015-04-26 16:24:04      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 UILabel *lLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 19, 105, 1)];
    lLabel.backgroundColor = getColorWithRGB(40, 125, 244, 1.0);
    [protocolImageView addSubview:lLabel];
    
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(userProtocolLogin:)];
    tap.numberOfTouchesRequired = 1;
    tap.numberOfTapsRequired = 1;
    [readLastLabel addGestureRecognizer:tap];



UILabel *readLastLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 110, 19)];
    readLastLabel.backgroundColor = [UIColor clearColor];
    readLastLabel.text = @"用户协议";
    readLastLabel.textColor = getColorWithRGB(40, 125, 244, 1.0);
    readLastLabel.font = [UIFont systemFontOfSize:14.0f];
    readLastLabel.userInteractionEnabled = YES;
    [protocolImageView addSubview:readLastLabel];

  

UILable点击事件

标签:

原文地址:http://www.cnblogs.com/songxing10000/p/4457791.html

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