diff --git a/Sources/TableRow.swift b/Sources/TableRow.swift index bf44619..356693e 100644 --- a/Sources/TableRow.swift +++ b/Sources/TableRow.swift @@ -25,15 +25,16 @@ open class TableRow: Row where CellType: UITableView public let item: CellType.CellData private lazy var actions = [String: [TableRowAction]]() + @available(iOS, obsoleted: 11, message: "Use leadingContextualActions, trailingContextualActions instead") open private(set) var editingActions: [UITableViewRowAction]? @available(iOS 11, *) - public var leadingContextualActions: [UIContextualAction] { + open var leadingContextualActions: [UIContextualAction] { [] } @available(iOS 11, *) - public var trailingContextualActions: [UIContextualAction] { + open var trailingContextualActions: [UIContextualAction] { [] }