# FastAttributedString **Repository Path**: thilong/FastAttributedString ## Basic Information - **Project Name**: FastAttributedString - **Description**: Fast create NSAttributedString - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-04-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FastAttributedString Fast create NSAttributedString #Usage: -------- _label.attributedText = [NSAttributedString fast:@"This is a [*#730000 14*]TEST[**]. Org style. [*#008899 24*]by -Thilong."]; ######Support color ,font size , and custom font. to use custom font, you should use "fast:defaultFont:defaultColor:registedFont" like this: --------- _label.attributedText = [NSAttributedString fast:@"This is a [*#730000 FMB*]TEST[**]. Org style. [*#008899 24*]by -Thilong." defaultFont:_label.font defaultColor:_label.textColor registedFont:@{ @"FMB" : [UIFont boldSystemFontOfSize:32] } ];