@@ -20,7 +20,7 @@ class NumberSectionView : UICollectionReusableView {
20
20
@IBOutlet weak var value : UILabel ?
21
21
}
22
22
23
- class ViewController : UIViewController {
23
+ class PartialUpdatesViewController : UIViewController {
24
24
25
25
@IBOutlet weak var animatedTableView : UITableView !
26
26
@IBOutlet weak var tableView : UITableView !
@@ -45,7 +45,7 @@ class ViewController: UIViewController {
45
45
}
46
46
. shareReplay ( 1 )
47
47
48
- let ( configureCell, titleForSection) = ViewController . tableViewDataSourceUI ( )
48
+ let ( configureCell, titleForSection) = PartialUpdatesViewController . tableViewDataSourceUI ( )
49
49
let tvAnimatedDataSource = RxTableViewSectionedAnimatedDataSource < NumberSection > (
50
50
configureCell: configureCell,
51
51
titleForHeaderInSection: titleForSection
@@ -63,7 +63,7 @@ class ViewController: UIViewController {
63
63
. bind ( to: tableView. rx. items ( dataSource: reloadDataSource) )
64
64
. addDisposableTo ( disposeBag)
65
65
66
- let ( configureCollectionViewCell, configureSupplementaryView) = ViewController . collectionViewDataSourceUI ( )
66
+ let ( configureCollectionViewCell, configureSupplementaryView) = PartialUpdatesViewController . collectionViewDataSourceUI ( )
67
67
let cvAnimatedDataSource = RxCollectionViewSectionedAnimatedDataSource (
68
68
configureCell: configureCollectionViewCell,
69
69
configureSupplementaryView: configureSupplementaryView
@@ -89,7 +89,7 @@ class ViewController: UIViewController {
89
89
}
90
90
91
91
// MARK: Skinning
92
- extension ViewController {
92
+ extension PartialUpdatesViewController {
93
93
94
94
static func tableViewDataSourceUI( ) -> (
95
95
TableViewSectionedDataSource < NumberSection > . ConfigureCell ,
0 commit comments