[Add] ZJSDK 2.5.8.12
[CocoaPods.git] / Specs / 1 / f / b / AttributedStyle / 0.1.0 / AttributedStyle.podspec.json
blobf2c30f3186bec52f794d3eb005b9e6a459c3dbe4
2   "name": "AttributedStyle",
3   "version": "0.1.0",
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```\nlet attributedStyle = AttributedStyle().font(UIFont.systemFontOfSize(21, weight: UIFontWeightLight))\nlet parapraphStyle = ParagraphStyle().lineBreakMode(.ByTruncatingMiddle)\nlet attributes = attributedStyle.paragraphStyle(parapraphStyle.style).foregroundColor(.grayColor()).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.systemFontOfSize(21, weight: UIFontWeightLight)).foregroundColor(UIColor.darkGrayColor()).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": "0.1.0"
17   },
18   "platforms": {
19     "ios": "8.0"
20   },
21   "source_files": "AttributedStyle/Classes/**/*",
22   "deprecated": true