美文网首页
给UILabel添加点击事件

给UILabel添加点击事件

作者: 唐人街的乞丐 | 来源:发表于2020-05-19 11:35 被阅读0次

允许UILabel 跟用户的交互事件

        _addressLabel.userInteractionEnabled = YES;

添加事件

        UITapGestureRecognizer * tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(chooseAddress)];
        [_addressLabel addGestureRecognizer:tapGesture];

相关文章

网友评论

      本文标题:给UILabel添加点击事件

      本文链接:https://www.haomeiwen.com/subject/zynvohtx.html