add insert section method
This commit is contained in:
parent
8de38d8dee
commit
ffac9fae14
|
|
@ -229,6 +229,12 @@ public class TableDirector: NSObject, UITableViewDataSource, UITableViewDelegate
|
|||
return self
|
||||
}
|
||||
|
||||
public func insert(section section: TableSection, atIndex index: Int) -> Self {
|
||||
|
||||
sections.insert(section, atIndex: index)
|
||||
return self
|
||||
}
|
||||
|
||||
public func clear() -> Self {
|
||||
|
||||
sections.removeAll()
|
||||
|
|
|
|||
Loading…
Reference in New Issue