Skip to content

Commit

Permalink
Change ASViewController to ASDKViewController
Browse files Browse the repository at this point in the history
  • Loading branch information
OhKanghoon committed Jul 17, 2020
1 parent b717d21 commit 6cf19a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Example/GithubRepos/CategoryViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import RxSwift
import RxCocoa
import RxOptional

final class CategoryViewController: ASViewController<ASTableNode> {
final class CategoryViewController: ASDKViewController<ASTableNode> {

enum Item: Int, CaseIterable {
case table
Expand All @@ -28,7 +28,7 @@ final class CategoryViewController: ASViewController<ASTableNode> {

// MARK: - Initialization

init() {
override init() {
super.init(node: ASTableNode())
node.delegate = self
node.dataSource = self
Expand Down
2 changes: 1 addition & 1 deletion Example/GithubRepos/RepoCollectionViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import RxSwift
import RxCocoa
import RxOptional

class RepoCollectionViewController: ASViewController<ASDisplayNode> {
class RepoCollectionViewController: ASDKViewController<ASDisplayNode> {

// MARK: - Properties

Expand Down
2 changes: 1 addition & 1 deletion Example/GithubRepos/RepoTableViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import RxSwift
import RxCocoa
import RxOptional

class RepoTableViewController: ASViewController<ASDisplayNode> {
class RepoTableViewController: ASDKViewController<ASDisplayNode> {

// MARK: - Properties

Expand Down

0 comments on commit 6cf19a5

Please sign in to comment.