Compare commits

..

4 Commits

Author SHA1 Message Date
Arnaud Dorgans e011a23f19 0.2.0.1 2018-01-04 13:36:29 +01:00
Arnaud Dorgans 12f4c3e966 pod spec 2018-01-04 13:06:38 +01:00
Arnaud Dorgans af0c4598be fix spec 2018-01-04 13:03:59 +01:00
Arnaud Dorgans a446dc45ff subspec fix 2018-01-04 12:38:15 +01:00
2 changed files with 15 additions and 13 deletions
+12 -12
View File
@@ -8,8 +8,8 @@
Pod::Spec.new do |s|
s.name = 'InfiniteLayout'
s.version = '0.1.7'
s.summary = 'Horizontal and Vertical infinite scrolling feature for UICollectionView'
s.version = '0.2.0.1'
s.summary = 'Horizontal and Vertical infinite scrolling feature for UICollectionView with Paging, NSProxy delegate, Reactive extension'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Horizontal and Vertical infinite scrolling feature for UICollectionView with Paging and NSProxy delegate
Horizontal and Vertical infinite scrolling feature for UICollectionView with Paging, NSProxy delegate, Reactive extension
DESC
s.homepage = 'https://github.com/Arnoymous/InfiniteLayout'
@@ -30,7 +30,7 @@ Horizontal and Vertical infinite scrolling feature for UICollectionView with Pag
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
#s.xcconfig = { 'SWIFT_OBJC_BRIDGING_HEADER' => '${POD_ROOT}/InfiniteLayout/BridgeHeader.h' }
# s.resource_bundles = {
@@ -43,15 +43,15 @@ Horizontal and Vertical infinite scrolling feature for UICollectionView with Pag
s.default_subspec = 'Core'
s.subspec 'Core' do |sp|
s.source_files = 'InfiniteLayout/Classes/**/*'
s.subspec 'Core' do |core|
core.source_files = 'InfiniteLayout/Classes/**/*'
end
s.subspec 'Rx' do |sp|
sp.dependency 'InfiniteLayout/Core', '~> 0.1'
sp.dependency 'RxSwift', '~> 4.0'
sp.dependency 'RxCocoa', '~> 4.0'
sp.dependency 'RxDataSources', '~> 3.0'
sp.source_files = 'InfiniteLayout/Rx/**/*'
s.subspec 'Rx' do |rx|
rx.dependency 'InfiniteLayout/Core', '~> 0.2'
rx.dependency 'RxSwift', '~> 4.0'
rx.dependency 'RxCocoa', '~> 4.0'
rx.dependency 'RxDataSources', '~> 3.0'
rx.source_files = 'InfiniteLayout/Rx/**/*'
end
end
@@ -105,7 +105,9 @@ open class InfiniteCollectionView: UICollectionView {
private func sharedInit() {
self.showsVerticalScrollIndicator = false
self.showsHorizontalScrollIndicator = false
self.scrollsToTop = false
#if os(iOS)
self.scrollsToTop = false
#endif
}
open override func layoutSubviews() {