zoukankan      html  css  js  c++  java
  • 设置按钮的边框颜色,添加下划线

        UIButton *selectButton = [UIButton buttonWithType:UIButtonTypeCustom];

        selectButton.frame = CGRectMake(passLabel.frame.origin.x, passLabel.frame.origin.y + passLabel.frame.size.height + 10, 20, 20); 

        //边框颜色

        [selectButton.layer setBorderWidth:1.0];

        CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

        CGColorRef colorref = CGColorCreate(colorSpace,(CGFloat[]){ 230/255.0, 230/255.0, 230/255.0, 1});

        [selectButton.layer setBorderColor:colorref];

    //下划线

    //下划线

        NSMutableAttributedString *content = [[NSMutableAttributedString alloc] initWithString:@"按钮的文字"];

        NSRange contentRange = {0,[content length]};

        [content addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:contentRange];

        passWordButton.titleLabel.attributedText = content;

         [self addSubview:selectButton];

  • 相关阅读:
    闭包问题小总结
    git常用命令总结
    数组对象方法的使用
    JS截取URL参数
    CSS清除浮动&内容居中&文字溢出
    网址大全
    any more
    下载网页视频
    下载无损音乐
    "前端" 宝藏网站
  • 原文地址:https://www.cnblogs.com/xiaolingling1126/p/5083023.html
Copyright © 2011-2022 走看看