[Add] OpenWeb3Lib 1.0.4-swift6.0
[CocoaPods.git] / Specs / d / 5 / 1 / Centipede / 2.0.0 / Centipede.podspec.json
blob9e30f9208495a1f0ca58187d2f69d95e00da7ef9
2   "name": "Centipede",
3   "version": "2.0.0",
4   "summary": "Swift achieve a pure library closures achieve UIKit assembly delegate and dataSource methods.",
5   "description": "一个 Swift 库,使用闭包实现 UIKit 等组件的 delegate 和 dataSource 方法\n\n解决什么问题\n\n在实现 delegate 的各个方法时:\n\n方法遍布整个 ViewController,散乱。\n具体的实现与成员变量被分开了,阅读时需要分开查看。\n如果 ViewController 中实现多个 UITableViewDataSource 时,方法中需要判断组件来做出反应。如下:(这很丑)\nfunc tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n    return tableView == leftTableView ? leftDatas.count : rightDatas.count\n}\n这些情况让代码不易阅读和维护。\n\n希望:\n\n代码连续。组件的构造、样式设置和各 delegate 实现方法可写在一个位置。\n独立。有多个 UITableView 时,tableViewA 和tableViewB 的 delegate 方法实现是独立的,互不干扰。",
6   "homepage": "https://github.com/klaus01/Centipede",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "柯磊": "kelei0017@gmail.com"
13   },
14   "platforms": {
15     "ios": "8.0"
16   },
17   "source": {
18     "git": "https://github.com/klaus01/Centipede.git",
19     "tag": "2.0.0"
20   },
21   "source_files": [
22     "Centipede/**/*.swift",
23     "Centipede/Centipede.h"
24   ],
25   "public_header_files": "Centipede/Centipede.h",
26   "requires_arc": true,
27   "pod_target_xcconfig": {
28     "SWIFT_VERSION": "3.0"
29   }