-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{// Return the number of sections.return4;}-(NSInteger)tableView:(UITableView*)tableViewnumberOfRowsInSection:(NSInteger)section{// Return the number of rows in the section.if(section==0){return1;}if(section==1){return2;}if(section==2){return4;}if(section==3){return1;}return0;}
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath{staticNSString*CellIdentifier=@"Cell";PrettyTableViewCell*cell=[tableViewdequeueReusableCellWithIdentifier:CellIdentifier];if(cell==nil){cell=[[PrettyTableViewCellalloc]initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:CellIdentifier];switch(indexPath.section){case0:switch(indexPath.row){case0:[selfprepareNameCell:cell];break;}break;default:break;}//设置圆角弧度和阴影cell.cornerRadius=5;cell.shadowOpacity=0.07;cell.backgroundColor=[UIColorwhiteColor];//设置选择时候的颜色cell.selectionGradientStartColor=[UIColorcolorWithRed:248.0/255.0green:244.0/255.0blue:239.0/255.0alpha:1];cell.SelectionGradientEndColor=[UIColorcolorWithRed:248.0/255.0green:244.0/255.0blue:239.0/255.0alpha:1];// Configure the cell...[cellprepareForTableView:tableViewindexPath:indexPath];}returncell;}