add remove method
This commit is contained in:
parent
44cbb8b7d8
commit
9bbd9c4b69
|
|
@ -92,6 +92,10 @@ open class TableSection {
|
|||
rows.remove(at: index)
|
||||
}
|
||||
|
||||
open func remove(rowAt index: Int) {
|
||||
rows.remove(at: index)
|
||||
}
|
||||
|
||||
// MARK: - deprecated methods -
|
||||
|
||||
@available(*, deprecated, message: "Use 'delete(rowAt:)' method instead")
|
||||
|
|
|
|||
Loading…
Reference in New Issue