add insert section method

This commit is contained in:
Max Sokolov 2016-06-19 12:35:12 +03:00
parent 8de38d8dee
commit ffac9fae14
1 changed files with 6 additions and 0 deletions

View File

@ -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()