Latest | 0.1.0 |
---|---|
Homepage | https://github.com/dlwj15/DLAttributedString |
License | MIT |
Platforms | ios 8.0, requires ARC |
Frameworks | UIKit, Foundation |
Authors |
链式开发富文本
公司使用很多个性化文本,若使用系统提供的NSMutableAttributedString书写实在太冗余了,代码可读性也很差。如果能像Masonry一样书写代码就完美了。废话不多说,直接操刀干起来。
Installation
Use the orsome CocoaPods.
In your Podfile
pod 'DLAttributedString'
或者直接拖拽引入工程中
使用该链式开发富文本有两种书写方式
第一种
NSMutableAttributedString *attributedStr = [NSMutableAttributedString attributedWithString:@"hello world"];
attributedStr.color(UIColor.redColor)
.bgColor(UIColor.yellowColor);
第二种
NSMutableAttributedString *attributedStr = [NSMutableAttributedString attributedWithString:@"hello world"];
attributedStr.color(UIColor.redColor).bgColor(UIColor.yellowColor);
具体的使用请下载demo进行查看
Latest podspec
{ "name": "DLAttributedString", "version": "0.1.0", "summary": "u94feu5f0fu5f00u53d1u5bccu6587u672c", "homepage": "https://github.com/dlwj15/DLAttributedString", "source": { "git": "https://github.com/dlwj15/DLAttributedString.git", "tag": "0.1.0" }, "source_files": "DLAttributedString/*", "license": "MIT", "authors": { "wenjie": "[email protected]" }, "requires_arc": true, "platforms": { "ios": "8.0" }, "frameworks": [ "UIKit", "Foundation" ], "exclude_files": "Classes/Exclude" }
Sun, 26 Aug 2018 02:00:10 +0000