moveToIndexCell(0, row: 0)
func moveToIndexCell(section: Int, row: Int) {
let topIndexPath = NSIndexPath(forRow: row, inSection: section)
if self.items.count != 0 && self.tableView?.visibleCells.count != 0 {
self.tableView?.scrollToRowAtIndexPath(topIndexPath, atScrollPosition: UITableViewScrollPosition.Top, animated: true)
}
}