Skip to content

Commit df7073c

Browse files
committed
Renames ViewController to PartialUpdatesViewController.
1 parent bc00852 commit df7073c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Example/Base.lproj/Main.storyboard

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,10 +376,10 @@
376376
</objects>
377377
<point key="canvasLocation" x="1171" y="1695"/>
378378
</scene>
379-
<!--View Controller-->
379+
<!--Partial Updates View Controller-->
380380
<scene sceneID="2Ak-6r-Q44">
381381
<objects>
382-
<viewController id="WCh-dm-Kq1" customClass="ViewController" customModule="Example" customModuleProvider="target" sceneMemberID="viewController">
382+
<viewController id="WCh-dm-Kq1" customClass="PartialUpdatesViewController" customModule="Example" customModuleProvider="target" sceneMemberID="viewController">
383383
<layoutGuides>
384384
<viewControllerLayoutGuide type="top" id="N8U-gT-9KM"/>
385385
<viewControllerLayoutGuide type="bottom" id="84O-UE-hUo"/>

Example/Example2_RandomizedSectionsAnimation.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class NumberSectionView : UICollectionReusableView {
2020
@IBOutlet weak var value: UILabel?
2121
}
2222

23-
class ViewController: UIViewController {
23+
class PartialUpdatesViewController: UIViewController {
2424

2525
@IBOutlet weak var animatedTableView: UITableView!
2626
@IBOutlet weak var tableView: UITableView!
@@ -45,7 +45,7 @@ class ViewController: UIViewController {
4545
}
4646
.shareReplay(1)
4747

48-
let (configureCell, titleForSection) = ViewController.tableViewDataSourceUI()
48+
let (configureCell, titleForSection) = PartialUpdatesViewController.tableViewDataSourceUI()
4949
let tvAnimatedDataSource = RxTableViewSectionedAnimatedDataSource<NumberSection>(
5050
configureCell: configureCell,
5151
titleForHeaderInSection: titleForSection
@@ -63,7 +63,7 @@ class ViewController: UIViewController {
6363
.bind(to: tableView.rx.items(dataSource: reloadDataSource))
6464
.addDisposableTo(disposeBag)
6565

66-
let (configureCollectionViewCell, configureSupplementaryView) = ViewController.collectionViewDataSourceUI()
66+
let (configureCollectionViewCell, configureSupplementaryView) = PartialUpdatesViewController.collectionViewDataSourceUI()
6767
let cvAnimatedDataSource = RxCollectionViewSectionedAnimatedDataSource(
6868
configureCell: configureCollectionViewCell,
6969
configureSupplementaryView: configureSupplementaryView
@@ -89,7 +89,7 @@ class ViewController: UIViewController {
8989
}
9090

9191
// MARK: Skinning
92-
extension ViewController {
92+
extension PartialUpdatesViewController {
9393

9494
static func tableViewDataSourceUI() -> (
9595
TableViewSectionedDataSource<NumberSection>.ConfigureCell,

RxSwift

Submodule RxSwift updated 120 files

0 commit comments

Comments
 (0)