美文网首页iOS Developer程序员
点击UILabel获取text属性值

点击UILabel获取text属性值

作者: 旅行和阳光 | 来源:发表于2017-05-22 23:29 被阅读49次

    自定义的View,View中有自定义的UILabel,然后UILabel添加了点击事件。
    action中的方法tap,是UITapGestureRecognizer对象,通过sender获取当前的view,然后通过类型转换来获取UILabel。
    代码如下:

    UITapGestureRecognizer *tap =[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(taptouch:)];
     [label addGestureRecognizer:tap];
     label.userInteractionEnabled = YES;
    [self addSubview:label];
    - (void)taptouch:(UITapGestureRecognizer *)sender
    {
         UILabel *label = (UILabel *)sender.view;
         NSLog(@"label text is %@",label.text);
    }
    

    相关文章

      网友评论

        本文标题:点击UILabel获取text属性值

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