IOS-UITableView相關小計

    //設置UITableView分隔線

    [tableShowsetSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];

    [tableShowsetSeparatorColor:[UIColorcolorWithPatternImage:[UIImageimageNamed:@"mapInfoLine.png"]]];

    //設置UITableView背景色

    tableShow.sectionIndexColor = [UIColorcolorWithRed:106.0f/255.0fgreen:130.0f/255.0fblue:139.0f/255.0falpha:1.0f];

    tableShow.backgroundColor = [UIColorcolorWithRed:28.0f/255.0fgreen:35.0f/255.0fblue:38.0f/255.0falpha:1.0f];

   //設置UITableView的Cell未選中與選擇背景色

    cell.backgroundColor = [UIColorcolorWithPatternImage:[UIImageimageNamed:@"menu_btnBackNormal.png"]];

    cell.selectedBackgroundView = [[UIViewalloc]initWithFrame:cell.frame];

    cell.selectedBackgroundView.backgroundColor =

    [UIColorcolorWithPatternImage:[UIImageimageNamed:@"menu_btnBackActive.png"]];

 隱藏UITableView多餘的白線

- (void)setExtraCellLineHidden:(UITableView *)tableView

{

    UIView *view = [UIView new];

    view.backgroundColor = [UIColor clearColor];

    [tableView setTableFooterView:view];

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章