diff --git a/Example/RxCocoa-Texture/RepositoryViewController.swift b/Example/RxCocoa-Texture/RepositoryViewController.swift index 9a6bf0a..de6aa87 100644 --- a/Example/RxCocoa-Texture/RepositoryViewController.swift +++ b/Example/RxCocoa-Texture/RepositoryViewController.swift @@ -10,14 +10,14 @@ import AsyncDisplayKit import RxSwift import RxCocoa -class RepositoryViewController: ASViewController { +class RepositoryViewController: ASDKViewController { private var items: [RepositoryViewModel2] = [] private var context = ASBatchContext() let disposeBag = DisposeBag() - init() { + override init() { let tableNode = ASTableNode(style: .plain) tableNode.backgroundColor = .white tableNode.automaticallyManagesSubnodes = true diff --git a/RxCocoa-Texture.podspec b/RxCocoa-Texture.podspec index 27b75bf..6730f42 100644 --- a/RxCocoa-Texture.podspec +++ b/RxCocoa-Texture.podspec @@ -11,10 +11,10 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/RxSwiftCommunity/RxCocoa-Texture.git', :tag => s.version.to_s } s.ios.deployment_target = '9.0' - s.swift_version = '5.0' + s.swift_version = '5.3' s.source_files = 'RxCocoa-Texture/Classes/**/*' - s.dependency 'RxSwift', '~> 5.0' - s.dependency 'RxCocoa', '~> 5.0' - s.dependency 'Texture', '~> 2.7' + s.dependency 'RxSwift', '~> 6.0' + s.dependency 'RxCocoa', '~> 6.0' + s.dependency 'Texture', '~> 3.1.0' end