[Add] ZJSDK 2.5.8.12
[CocoaPods.git] / Specs / 1 / f / b / AttributedStyle / 1.0.2 / AttributedStyle.podspec.json
bloba3486ed4e15b8fa0c9fa58147d31f3ee4bc0bfe2
2   "name": "AttributedStyle",
3   "version": "1.0.2",
4   "summary": "Swifty adaptation of NSAttributedStyle and NSParagraphStyle",
5   "description": "# AttributedStyle\nSwifty adaptation of NSAttributedStyle and NSParagraphStyle\n\n- easy setup and reusing\n- almost each attribute as function\n- compact view\n\n```swift\nlet attributedStyle = AttributedStyle().font(UIFont.systemFont(ofSize: 21, weight: UIFontWeightLight))\nlet parapraphStyle = ParagraphStyle().lineBreakMode(.byTruncatingMiddle)\nlet attributes = attributedStyle.paragraphStyle(parapraphStyle.style).foregroundColor(.gray).attributes\n\nlet label = UILabel()\nlabel.attributedText = NSAttributedString(string: \"Attribute it!\", attributes: attributes)\n// or\nlabel.attributedText = NSAttributedString(string: \"Attribute it!\", attributes: AttributedStyle().font(UIFont.systemFont(ofSize: 21, weight: UIFontWeightLight)).foregroundColor(UIColor.darkGray).paragraphStyle(ParagraphStyle().alignment(.center).style).attributes)\n```",
6   "homepage": "https://github.com/dimpiax/AttributedStyle",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Pilipenko Dima": "dimpiax@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/dimpiax/AttributedStyle.git",
16     "tag": "1.0.2"
17   },
18   "platforms": {
19     "ios": "8.0"
20   },
21   "source_files": "AttributedStyle/Classes/**/*",
22   "pushed_with_swift_version": "3.0",
23   "deprecated": true