Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OhKanghoon committed Apr 22, 2019
1 parent 390739d commit 4495693
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PODS:
- RxAtomic (4.4.1)
- RxCocoa (4.4.1):
- RxSwift (~> 4.0)
- RxDataSources-Texture (1.0.3):
- RxDataSources-Texture (1.1.0):
- Differentiator (~> 3.0)
- RxCocoa (~> 4.0)
- RxSwift (~> 4.0)
Expand Down Expand Up @@ -75,7 +75,7 @@ SPEC CHECKSUMS:
RxAlamofire: 09624d0f2d48ed8b686e4eb4cf68e28cbd2df556
RxAtomic: f8d6adc1ccb87a767811269e4875887bc74dbf19
RxCocoa: 2f35a76bf8887872e28a1914112395b11b8e0e64
RxDataSources-Texture: 6be46e816da8d199cd66bb0f9e27c99fa41ad57f
RxDataSources-Texture: a3ea28c97dd22d82573b0204393af11880dc275d
RxOptional: 80426a0ddbd092573e4c482d8cc13302078c4d5e
RxSwift: 92fcf68dfef21f3e2ab1965363d9e7b3d787597e
Texture: 9d7e38965cf22ccd7cd9c249dd78b3f14e70ab6c
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
- rx.items(dataSource:protocol<RxASTableDataSourceType, ASTableDataSource>)

```swift
let dataSource = RxASTableSectionedReloadDataSource<SectionModel<String, Int>>(configureCell: { (_, _, _, num) -> ASCellNode in
let cell = ASTextCellNode()
cell.text = "\(num)"
return cell
let dataSource = RxASTableSectionedReloadDataSource<SectionModel<String, Int>>(
configureCellBlock: { (_, _, _, num) in
return {
let cell = ASTextCellNode()
cell.text = "\(num)"
return cell
}
})

Observable.just([SectionModel(model: "title", items: [1, 2, 3])])
.bind(to: tableNode.rx.items(dataSource: dataSource))
.disposed(by: disposeBag)
Expand Down
2 changes: 1 addition & 1 deletion RxDataSources-Texture.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'RxDataSources-Texture'
s.version = '1.0.3'
s.version = '1.1.0'
s.summary = 'RxDataSources With Texture'
s.description = <<-DESC
This is a collection of reactive data sources for ASTableNode and ASCollectionNode
Expand Down

0 comments on commit 4495693

Please sign in to comment.