美文网首页
iOS - UIButton按钮发生事件

iOS - UIButton按钮发生事件

作者: 一世长安乱 | 来源:发表于2018-04-10 16:45 被阅读0次

    UIButton##

    按钮发生事件

    - (IBAction)clickRedButton
    {
        // 改变文字颜色
        self.label.textColor = [UIColor redColor];
        // 改变文字内容
        self.label.text = @"我是红色";
        // 改变文字背景颜色
        self.label.backgroundColor = [UIColor greenColor];
        // 改变文字对齐方式NSTextAlignmentCenter:居中,NSTextAlignmentRight:靠右,NSTextAlignmentLeft:靠左
        self.label.textAlignment = NSTextAlignmentCenter;
        // 改变文字大小
        self.label.font = [UIFont systemFontOfSize:30.f];
    }
    
    这里写图片描述

    相关文章

      网友评论

          本文标题:iOS - UIButton按钮发生事件

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