iOS: UILabel 实现 Markdown 代码框

实现这个我真的花了很长的时间,效果和简书的代码框差不多,因为简书也是采用了 Markdown 的代码框,就像下面这样。

特别喜欢孙燕姿的这张专辑。
克卜勒是以天文学家Johannes Kepler命名的一颗超新星。
是四百年来第一次在白天可以用肉眼看到的星星。
我不太懂那些宇宙的事,因为自己的不够聪明,反而对这个世界格外放心。
太阳每天都会升起来,潮水每天都会退去,“藏在众多孤星之中,还是找得到你”。

—— [来自网易云评论] (http://music.163.com/#/song?id=28196001)

要实现这个效果,相当于要解决下面这几个问题。

一、UILabel 添加边框和背景色

这个是最简单的,没什么好说,直接贴代码,颜色都帮你取好了。

UILabel *label = [[UILabel alloc] init];
label.layer.borderWidth= 1.0f;
label.layer.cornerRadius=5.0f;
label.layer.borderColor = [[UIColor colorWithRed:204/255.0 green:204/255.0 blue:204/255.0 alpha:1] CGColor];

二、UILabel 设置文本的行高

NSString *text = @"藏在众多孤星之中\n还是找得到你";

NSMutableAttributedString* attrString = [[NSMutableAttributedString  alloc] initWithString:text];
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];

[style setLineSpacing:lineSpacing];

[attrString addAttribute:NSParagraphStyleAttributeName
                       value:style
                       range:NSMakeRange(0, text.length)];
    
label.attributedText = attrString;

三、UILabel 支持多行文本和动态高度

这里需要设置 label 的相关属性和加上自动布局的水平限制。

[self.view addSubview:label];

label.numberOfLines = 0;
label.translatesAutoresizingMaskIntoConstraints = NO;

NSArray *labelConstraints = nil;
NSDictionary *views = @{
    @"label": label,
};
labelConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[label]-10-|" options:0 metrics:nil views:views];
[self.view addConstraints:labelConstraints];

注:上面都是伪代码,只提供一个大概思路。

四、UILabel 设置 Padding

这个是最难的地方,我在 Stackoverflow 找到下面两个解决方案。

  1. subclass UILabel 并重写 drawTextInRect 和 intrinsicContentSize 方法
  2. 如果只是添加左右 Padding,可以使用 NSAttributedString

很显然我们是需要添加4个方向的 Padding,但当我采用第一种方法时,发现如果文本太长,出现换行的情况下,高度的计算会有问题,部分文本显示不出来。第一种方法只适用于添加上下两个方向的 Padding,不能用于添加左右方向的 Padding。

所以这里必须结合两种方案,才能顺利实现4个方向的 Padding 添加。最后我就直接贴实现的代码好了。

// CodeBlockLabel.h

#import <UIKit/UIKit.h>

@interface CodeBlockLabel : UILabel

- (void)setBlockText:(NSString*)text;
- (void)setBlockText:(NSString*)text fontSize:(NSInteger)fontSize lineSpacing:(NSInteger)lineSpacing;

@end
// CodeBlockLabel.m

#import "CodeBlockLabel.h"

@implementation CodeBlockLabel

float topInset, leftInset, bottomInset, rightInset;

- (instancetype)init {
    if (self = [super init]) {
        [self setContentEdgeInsets:UIEdgeInsetsMake(20, 0, 20, 0)];
        
        self.numberOfLines = 0;
        self.backgroundColor = [UIColor colorWithRed:247/255.0 green:247/255.0 blue:247/255.0 alpha:1];
        self.translatesAutoresizingMaskIntoConstraints = NO;
        
        self.layer.cornerRadius=5.0f;
        self.layer.borderColor = [[UIColor colorWithRed:204/255.0 green:204/255.0 blue:204/255.0 alpha:1] CGColor];
        self.layer.borderWidth= 1.0f;
    }
    
    return self;
}

- (void)drawTextInRect:(CGRect)uiLabelRect {
    [super drawTextInRect:UIEdgeInsetsInsetRect(uiLabelRect, UIEdgeInsetsMake(topInset,leftInset,bottomInset,rightInset))];
}

- (CGSize)intrinsicContentSize {
    CGSize intrinsicSuperViewContentSize = [super intrinsicContentSize] ;
    intrinsicSuperViewContentSize.height += topInset + bottomInset;
    intrinsicSuperViewContentSize.width += leftInset + rightInset;
    return intrinsicSuperViewContentSize;
}

- (void)setContentEdgeInsets:(UIEdgeInsets)edgeInsets {
    topInset = edgeInsets.top;
    leftInset = edgeInsets.left;
    rightInset = edgeInsets.right;
    bottomInset = edgeInsets.bottom;
    [self invalidateIntrinsicContentSize] ;
}

- (void)setBlockText:(NSString*)text {
    NSInteger lineSpacing;
    NSString *trimmedString = [text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
    
    // 处理一行的情况
    if ([trimmedString rangeOfString:@"\n"].location == NSNotFound) {
        lineSpacing = 0;
    } else {
        lineSpacing = 7;
    }
    
    [self setBlockText:trimmedString fontSize:15 lineSpacing:lineSpacing];
}

- (void)setBlockText:(NSString*)text fontSize:(NSInteger)fontSize lineSpacing:(NSInteger)lineSpacing {
    [self setFont:[UIFont systemFontOfSize:fontSize]];
    
    NSMutableAttributedString* attrString = [[NSMutableAttributedString  alloc] initWithString:text];
    NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
    
    [style setLineSpacing:lineSpacing];
    
    // 是的写死了,不要在意哈哈哈
    style.firstLineHeadIndent = 20.0;
    style.headIndent = 20.0;
    style.tailIndent = -20.0;
    
    [attrString addAttribute:NSParagraphStyleAttributeName
                       value:style
                       range:NSMakeRange(0, text.length)];
    
    self.attributedText = attrString;
}

@end
// ViewController.m

#import "ViewController.h"
#import "CodeBlockLabel.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 添加 UIScrollView
    UIScrollView *scrollView = [[UIScrollView alloc] init];
    scrollView.translatesAutoresizingMaskIntoConstraints = NO;
    
    [self.view addSubview:scrollView];
    
    // 这里添加更多的文本,就能看到滚动条了
    NSString *text = @"藏在众多孤星之中\n还是找得到你";
    CodeBlockLabel *codeBlock = [[CodeBlockLabel alloc] init];
    [codeBlock setBlockText:text];
    
    // 这个 spongeBob 去掉会有 bug
    UILabel *spongeBob = [[UILabel alloc] init];
    spongeBob.numberOfLines = 0;
    spongeBob.translatesAutoresizingMaskIntoConstraints = NO;
    
    [scrollView addSubview:spongeBob];
    [scrollView addSubview:codeBlock];
    
    NSDictionary *views = @{
                            @"scrollView": scrollView,
                            @"codeBlock": codeBlock,
                            @"spongeBob": spongeBob,
                            };
    
    // 添加约束
    NSArray *constraints = nil;
    
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[codeBlock]-10-|" options:0 metrics:nil views:views];
    
    [scrollView addConstraints:constraints];
    
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[spongeBob(scrollView)]|" options:0 metrics:nil views:views];
    [scrollView addConstraints:constraints];
    
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-15-[codeBlock]-15-[spongeBob]-5-|" options:0 metrics:nil views:views];
    
    [scrollView addConstraints:constraints];
    
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[scrollView]|" options:0 metrics:nil views:views];
    
    [self.view addConstraints:constraints];
    
    constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-30-[scrollView]-44-|" options:0 metrics:nil views:views];
    
    [self.view addConstraints:constraints];
}

@end

这就是全部了,上面还添加了一个 UIScrollView,这样就算文本太长,你也能滑到下面去看了,你的更好的办法吗?有的话一定要告诉我!

参考文章

UILabel + UIScrollView + Auto Layout

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,784评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,745评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,702评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,229评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,245评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,376评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,798评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,471评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,655评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,485评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,535评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,235评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,793评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,863评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,096评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,654评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,233评论 2 341

推荐阅读更多精彩内容

  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,722评论 1 92
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 11,991评论 4 60
  • 拜县被誉为泰北小瑞士,像童话镇一般安静悠闲。如果你是小清新,那一定不要错过拜县,粉色房子,黄色小屋,大树秋...
    lapuil阅读 853评论 3 3
  • 中国第一家心理学网校诞生了! 人人学得起,人人学得会,人人学得方便。 欢迎朋友们转发支持,让心理学走进社会大众,为...
    佳芮阅读 395评论 1 0
  • 当你留在我身边的印记一点一点地消失,你是不是也将在我的心里消失了痕迹? 明媚的春天带给我活力,也带来了你,如今凛冽...
    疯狂素阅读 502评论 0 0