////表格數(shù)據(jù)源方法
//-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
//{
//? ? SecondOneCell * cell = [tableView dequeueReusableCellWithIdentifier:tbvcell];
//
//? ? if (indexPath.section == 0) {
//? ? ? _TableView.rowHeight = 260;
//? ? }
//? ? if (indexPath.section == 1) {
//? ? ? ? _TableView.rowHeight = 200;
//? ? }
//? ? if (indexPath.section == 2) {
//? ? ? ? _TableView.rowHeight = 200;
//? ? }
//? ? if (indexPath.section == 3) {
//? ? ? ? _TableView.rowHeight = 200;
//? ? }
//
//? ? return cell;
//}
////表格點擊的方法
//-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//? ? //??點擊單元格的時候取消選中單元格
//? ? [tableView deselectRowAtIndexPath:indexPath animated:YES];
//}
//-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section{
//
//? ? return 0.1;
//
//}
//-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section{
//
//? ? return nil;
//
//}
//-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
//? ? return 0.1;
//}
//-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
//? ? return nil;
//}
//