- (NSInteger)numberOfSectionsInTableView:(UITableView
*)tableView;//返回多少个section
- (NSInteger)tableView:(UITableView *)table
numberOfRowsInSection:(NSInteger)section;//返回多少行
- (CGFloat)tableView:(UITableView *)tableView
heightForRowAtIndexPath:(NSIndexPath*)indexPath;//返回⾏高
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;//返回section的 headview的高
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;//返回section的 footview的高 |
|