IOS UILabel添加手势,增加点击功能

来源:互联网 发布:alphago的算法 编辑:程序博客网 时间:2024/04/30 15:15

为UILabel增加点击触发事件。     

UITapGestureRecognizer *tapRecognizerWeibo=[[UITapGestureRecognizeralloc]initWithTarget:selfaction:@selector(openURL:)];

   self.weiboLabel.userInteractionEnabled=YES;

   [self.weiboLabeladdGestureRecognizer:tapRecognizerWeibo];