28 lines
569 B
Swift
28 lines
569 B
Swift
//
|
|
// TableAdapterCellData.swift
|
|
// PatternsSwift
|
|
//
|
|
// Created by mrustaa on 17/04/2020.
|
|
// Copyright © 2020 mrustaa. 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
|
|
}
|
|
|
|
}
|