Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 366 Bytes

File metadata and controls

13 lines (10 loc) · 366 Bytes

LabelMaker

A wrapper for UILabel to set rich text, use like masonry.

Usage

[self.label jx_make:^(JXTextMaker * _Nonnull make) {
	make.text(@"start").font(15).color([UIColor blackColor]);
	make.text(@"182 6193 2918").font(15).color([UIColor redColor]).tap(@selector(clickPhoneNumber:));
	make.text(@"end").font(15).color([UIColor blackColor]);
}];