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