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..661d7bf 100644 --- a/RxCocoa-Texture.podspec +++ b/RxCocoa-Texture.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'RxCocoa-Texture' - s.version = '3.1.0' + s.version = '3.2.0' s.summary = 'RxCocoa Extension Library for Texture' s.description = 'This library is built on Texture with RxCocoa, RxCocoa is a framework that helps make Cocoa APIs used in iOS and OS X easier to use with reactive techniques.' @@ -16,5 +16,5 @@ Pod::Spec.new do |s| s.dependency 'RxSwift', '~> 5.0' s.dependency 'RxCocoa', '~> 5.0' - s.dependency 'Texture', '~> 2.7' + s.dependency 'Texture', '>= 2.7' end