123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import UIKit
- import Sheeeeeeeeet
- class ActionSheetDeleteItem: ActionSheetItem {
- override open func cell(for tableView: UITableView) -> ActionSheetItemCell {
- return ActionSheetDeleteItemCell(style: cellStyle, reuseIdentifier: cellReuseIdentifier)
- }
- }
- class ActionSheetDeleteItemCell: ActionSheetItemCell {}
|