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",
12 "柯磊": "kelei0017@gmail.com"
18 "git": "https://github.com/klaus01/Centipede.git",
22 "Centipede/**/*.swift",
23 "Centipede/Centipede.h"
25 "public_header_files": "Centipede/Centipede.h",
27 "pod_target_xcconfig": {
28 "SWIFT_VERSION": "3.0"