属性字符串

来源:互联网 发布:淘宝买的催情药管用吗 编辑:程序博客网 时间:2024/06/06 08:52

属性字符串的使用:

 if(!_pwdButton) {        _pwdButton = [UIButton buttonWithType:UIButtonTypeSystem];        NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];        //设置下划线的颜色        dic[NSUnderlineColorAttributeName] = [UIColor orangeColor];        //设置下划线可见        dic[NSUnderlineStyleAttributeName] = @YES;        //设置字体        dic[NSFontAttributeName] = [UIFont systemFontOfSize:12];        //设置字体颜色        dic[NSForegroundColorAttributeName] = [UIColor orangeColor];        NSAttributedString *title = [[NSAttributedString alloc]initWithString:@"密码登录" attributes:dic];        [_pwdButton setAttributedTitle:title forState:UIControlStateNormal];        [self.view addSubview:_pwdButton];         [_pwdButton mas_makeConstraints:^(MASConstraintMaker *make) {             make.top.equalTo(100);             make.centerX.equalTo(0);             make.height.equalTo(50);             make.width.equalTo(100);         }];        //        [_pwdButton setAttributedTitle:title forState:UIControlStateNormal];        //        [self.view addSubview:_pwdButton];        //        [_pwdButton mas_makeConstraints:^(MASConstraintMaker *make) {        //            make.right.equalTo(-25);        //            make.top.equalTo(self.codeLoginButton.mas_bottom).offset(15);        //        }];    }    return _pwdButton;}

效果如下图:
这里写图片描述

原创粉丝点击