tableview 协议,如果指明遵循这个协议,一下三个函数是一定要在 viewcontroller 里实现的
- numberOfSectionsInTableView:告知视图,有多少个 section 需要加载到 table 里
- tableView:numberOfRowsInSecion: 告知 controller 每个 section 需要加载多少个单元或多少行
- tableView:cellForRowAtIndexPath:返回 UITableViewCell 的实例,用于构成 table view,这个函数是一定要实现的。