[Add] IPDSDK 2.0.0.3
[CocoaPods.git] / Specs / 0 / c / b / DUviews / 0.1.4 / DUviews.podspec.json
blob969edd4b033ff9de2dbdf5c4b275ce9765353e1e
2   "name": "DUviews",
3   "version": "0.1.4",
4   "summary": "DUviews is collection of UI wrappers around UIKit views that supports writing UI in code very easily",
5   "description": "DUviews is collection of UI wrappers around UIKit views that supports writing UI in code very easily\nfor example if you want to make a label\nyou dont have to write\nlet label = UILabel()\nlabel.frame = CGRect(x,y,width,height)\nlabel.font = .systemFont(ofSize: 44)\nlabel.textColor = .blue\nview.addSubView(label)\n\nall you will write is\n\nlet label = DULabel(frame: CGRect(x: 0, y: 0, width: self.view.frame.width, height: 200), parent: view, font: .systemFont(ofSize: 44), textColor: .blue)!\nand its UILabel not a new class you can use all built in methods and variable in it",
6   "homepage": "https://github.com/madadoux/DUviews",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "mohamed saeed": "mohedsh@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/madadoux/DUviews.git",
16     "tag": "0.1.4"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "swift_versions": "4.0",
22   "source_files": "Classes/*.{h,m,swift}",
23   "swift_version": "4.0"