现在的位置: 首页 > 综合 > 正文

IOS-UITableView相关小计

2018年05月25日 ⁄ 综合 ⁄ 共 939字 ⁄ 字号 评论关闭

    //设置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];

}

抱歉!评论已关闭.