1. UITableView //去除tableviews的點擊效果 //去除tableviews的點擊效果 cell.selectionStyle = UITableViewCellSelectionStyleNone; //隱藏tableView的分割線 cell.tableView.separ ...
1. UITableView
//去除tableviews的點擊效果 cell.selectionStyle = UITableViewCellSelectionStyleNone; //隱藏tableView的分割線 cell.tableView.separatorStyle = UITableViewCellSelectionStyleNone; //根據cell的位置獲得某個cell SecondTableViewCell *cell = (SecondTableViewCell *)[self.tableViewcellForRowAtIndexPath:[NSIndexPathindexPathForRow:2inSection:0]]; //設置行高為動態 tableView.rowHeight = UITableViewAutomaticDimension; //cell的預估行高 tableView.estimatedRowHeight = 44; 點擊狀態欄回到頂部 tableView.scrollsToTop = YES; //刷新一個section NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //一個cell刷新 NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0]; [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone]; 實現這個新的delegate函數即可:可以設置背景色- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section { view.tintColor = [UIColor clearColor]; }
改變文字的顏色
- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section { UITableViewHeaderFooterView *footer = (UITableViewHeaderFooterView *)view; [footer.textLabel setTextColor:[UIColor whiteColor]]; }
cell的4種格式
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell;
switch
(indexPath.row) {
case
0
:
{
cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CELL1];
cell.backgroundColor = [UIColor yellowColor];
cell.selectionStyle = UITableViewCellSelectionStyleDefault;
}
break
;
case
1
:
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CELL2];
cell.backgroundColor = [UIColor redColor];
cell.selectionStyle = UITableViewCellSelectionStyleGray;
}
break
;
case
2
:
{
cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CELL2];
cell.backgroundColor = [UIColor blueColor];
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
}
break
;
case
3
:
{
cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CELL4];
cell.backgroundColor = [UIColor purpleColor];
cell.selectionStyle = UITableViewCellSelectionStyleDefault;
}
break
;
}
cell.imageView.image = [UIImage imageNamed:@
"warning_btn"
];
cell.detailTextLabel.text = @
"detailTextLabel"
;
cell.textLabel.text = @
"textLabel"
;
return
cell;
}