Deprecated.swift 522 B

123456789101112131415161718192021
  1. //
  2. // Deprecated.swift
  3. // RxDataSources
  4. //
  5. // Created by Krunoslav Zaher on 10/8/17.
  6. // Copyright © 2017 kzaher. All rights reserved.
  7. //
  8. #if os(iOS) || os(tvOS)
  9. extension CollectionViewSectionedDataSource {
  10. @available(*, deprecated, renamed: "configureSupplementaryView")
  11. public var supplementaryViewFactory: ConfigureSupplementaryView? {
  12. get {
  13. return self.configureSupplementaryView
  14. }
  15. set {
  16. self.configureSupplementaryView = newValue
  17. }
  18. }
  19. }
  20. #endif