28 lines
594 B
Swift
28 lines
594 B
Swift
//
|
||
// TableAdapterCellData.swift
|
||
// PatternsSwift
|
||
//
|
||
// Created by Рустам Мотыгуллин on 17/04/2020.
|
||
// Copyright © 2020 mrusta. All rights reserved.
|
||
//
|
||
|
||
import UIKit
|
||
|
||
open class TableAdapterCellData: NSObject {
|
||
|
||
// public let cellIdentifier: String
|
||
//
|
||
// public init(cellIdentifier: String? = UUID().uuidString) {
|
||
// self.cellIdentifier = cellIdentifier ?? UUID().uuidString
|
||
// }
|
||
|
||
open func cellHeight() -> CGFloat {
|
||
return UITableView.automaticDimension
|
||
}
|
||
|
||
open func canEditing() -> Bool {
|
||
return false
|
||
}
|
||
|
||
}
|