88
99import UIKit
1010
11+ @available ( iOS 13 . 0 , * )
1112open class ContainerController : NSObject {
1213
1314 // MARK: Views
@@ -1090,6 +1091,7 @@ open class ContainerController: NSObject {
10901091
10911092// MARK: - Gesture Delegate
10921093
1094+ @available ( iOS 13 . 0 , * )
10931095extension ContainerController : UIGestureRecognizerDelegate {
10941096
10951097 public func gestureRecognizer( _ gestureRecognizer: UIGestureRecognizer , shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer ) -> Bool {
@@ -1100,6 +1102,7 @@ extension ContainerController: UIGestureRecognizerDelegate {
11001102
11011103// MARK: - Table Delegate
11021104
1105+ @available ( iOS 13 . 0 , * )
11031106extension ContainerController : UITableViewDelegate {
11041107
11051108 public func tableView( _ tableView: UITableView , heightForRowAt indexPath: IndexPath ) -> CGFloat {
@@ -1119,6 +1122,7 @@ extension ContainerController: UITableViewDelegate {
11191122
11201123// MARK: - Table DataSource
11211124
1125+ @available ( iOS 13 . 0 , * )
11221126extension ContainerController : UITableViewDataSource {
11231127
11241128 public func tableView( _ tableView: UITableView , numberOfRowsInSection section: Int ) -> Int {
@@ -1151,6 +1155,7 @@ extension ContainerController: UITableViewDataSource {
11511155
11521156// MARK: - Collection Delegate
11531157
1158+ @available ( iOS 13 . 0 , * )
11541159extension ContainerController : UICollectionViewDelegate {
11551160
11561161 public func collectionView( _ collectionView: UICollectionView , didSelectItemAt indexPath: IndexPath ) {
@@ -1163,6 +1168,7 @@ extension ContainerController: UICollectionViewDelegate {
11631168
11641169// MARK: - Collection DataSource
11651170
1171+ @available ( iOS 13 . 0 , * )
11661172extension ContainerController : UICollectionViewDataSource {
11671173
11681174 public func collectionView( _ collectionView: UICollectionView , numberOfItemsInSection section: Int ) -> Int {
@@ -1182,6 +1188,7 @@ extension ContainerController: UICollectionViewDataSource {
11821188
11831189// MARK: - Collection DelegateFlowLayout
11841190
1191+ @available ( iOS 13 . 0 , * )
11851192extension ContainerController : UICollectionViewDelegateFlowLayout {
11861193
11871194 public func collectionView( _ collectionView: UICollectionView , layout collectionViewLayout: UICollectionViewLayout , sizeForItemAt indexPath: IndexPath ) -> CGSize {
@@ -1194,6 +1201,7 @@ extension ContainerController: UICollectionViewDelegateFlowLayout {
11941201
11951202// MARK: - Scroll Delegate
11961203
1204+ @available ( iOS 13 . 0 , * )
11971205extension ContainerController : UIScrollViewDelegate {
11981206
11991207 public func scrollViewDidScroll( _ scrollView: UIScrollView ) {
0 commit comments