[Add] ZJSDK 2.5.8.12
[CocoaPods.git] / Specs / 9 / a / 4 / RxDataSources / 1.0.0-beta.2 / RxDataSources.podspec.json
blob72f593ba9c6ae1a7b1e842aac188df7da03896f4
2   "name": "RxDataSources",
3   "version": "1.0.0-beta.2",
4   "summary": "This is a collection of reactive data sources for UITableView and UICollectionView.",
5   "description": "This is a collection of reactive data sources for UITableView and UICollectionView.\n\nIt enables creation of animated data sources for table an collection views in just a couple of lines of code.\n\n```swift\nlet data: Obserable<Section> = ...\n\nlet dataSource = RxTableViewSectionedAnimatedDataSource<Section>()\ndataSource.cellFactory = { (tv, ip, i) in\n    let cell =tv.dequeueReusableCellWithIdentifier(\"Cell\") ?? UITableViewCell(style:.Default, reuseIdentifier: \"Cell\")\n    cell.textLabel!.text = \"(i)\"\n    return cell\n}\n\n// animated\ndata\n   .bindTo(animatedTableView.rx_items(dataSource: dataSource))\n   .addDisposableTo(disposeBag)\n\n// normal reload\ndata\n   .bindTo(tableView.rx_itemsWithDataSource(dataSource))\n   .addDisposableTo(disposeBag)\n```",
6   "homepage": "https://github.com/ReactiveX/RxSwift",
7   "license": "MIT",
8   "authors": {
9     "Krunoslav Zaher": "krunoslav.zaher@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/RxSwiftCommunity/RxDataSources.git",
13     "tag": "1.0.0-beta.2"
14   },
15   "requires_arc": true,
16   "platforms": {
17     "ios": "8.0",
18     "tvos": "9.0"
19   },
20   "source_files": "Sources/**/*.swift",
21   "dependencies": {
22     "RxSwift": [
23       "~> 3.0.0-beta.1"
24     ],
25     "RxCocoa": [
26       "~> 3.0.0-beta.1"
27     ]
28   }