码迷,mamicode.com
首页 > 其他好文 > 详细

给Label加下划线、中划线

时间:2017-06-21 13:49:53      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:gre   ram   lin   sdi   str   margin   format   height   ring   

添加中划线:

        UILabel * strikeLabel = [[UILabel alloc] initWithFrame:(CGRectMake(10, 10, 50, 30))];

        NSString *textStr = [NSString stringWithFormat:@"%@", @"12"];

        

        //中划线

        NSDictionary *attribtDic = @{NSStrikethroughStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};

        NSMutableAttributedString *attribtStr = [[NSMutableAttributedString alloc]initWithString:textStr attributes:attribtDic];

        

        // 赋值

        strikeLabel.attributedText = attribtStr;

        

        [self.view addSubview:strikeLabel];

 

添加下划线:

 

        UILabel *underlineLabel = [[UILabel alloc] initWithFrame:(CGRectMake(10, 10, 50, 30))];

        NSString *textStr = [NSString stringWithFormat:@"%@", @"12"];

        

        // 下划线

        NSDictionary *attribtDic = @{NSUnderlineStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};

        NSMutableAttributedString *attribtStr = [[NSMutableAttributedString alloc]initWithString:textStr attributes:attribtDic];

        

        //赋值

        underlineLabel.attributedText = attribtStr;

        

        [self.view addSubview:underlineLabel];

给Label加下划线、中划线

标签:gre   ram   lin   sdi   str   margin   format   height   ring   

原文地址:http://www.cnblogs.com/huangzs/p/7058642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!