[Add] ZJSDK 2.5.5.0
[CocoaPods.git] / Specs / d / 2 / 7 / MaterialCardView / 0.0.2 / MaterialCardView.podspec.json
blob3cddc95fe807aa4dee20f3af501d18c7cc5f77fc
2   "name": "MaterialCardView",
3   "version": "0.0.2",
4   "summary": "Create material design cards quick and easy.",
5   "description": "  Create a `MaterialCardView`\n\n  ``` swift\n  let c = MaterialCardView (\n  x: 10,\n  y: StatusBarHeight + 10,\n  w: ScreenWidth-20)\n  view.addSubview (c)\n  ```\n\n  And start to add `MaterialCardCell`s\n\n  * Header Cell\n\n  ``` swift\n  func addHeader (title: String)\n  func addHeader (view: UIView)\n  ```\n\n  * Cell\n\n  ``` swift\n  addCell (text: String, action: (()->Void)? = nil)\n  addCell (view: UIView, action: (()->Void)? = nil)\n  addCell (cell: MaterialCardCell)\n  ```\n\n  * FooterCell\n\n  ``` swift\n  func addFooter (title: String)\n  func addFooter (view: UIView)\n  ```\n\n\n  >Material Card will update its frame size when you add or\n  >remove `MaterialCardCell`s.\n  >This is why you don't set its `height` value when initilize it.\n\n",
6   "homepage": "https://github.com/cemolcay/MaterialCardView",
7   "license": "MIT",
8   "authors": {
9     "Cem Olcay": "ccemolcay@gmail.com"
10   },
11   "platforms": {
12     "ios": "8.0"
13   },
14   "source": {
15     "git": "https://github.com/cemolcay/MaterialCardView.git",
16     "tag": "v0.0.2"
17   },
18   "source_files": [
19     "MaterialCardView/MaterialCardView.swift",
20     "MaterialCardView/CEMKit.swift"
21   ],
22   "requires_arc": true