改变UITableView选中行高亮的颜色

        UIView *backView = [[UIView alloc] initWithFrame:self.contentView.frame];
        backView.backgroundColor = [UIColor colorWithRed:45.0/255.0 green:105.0/255.0 blue:166.0/255.0 alpha:1.0];
        self.selectedBackgroundView = backView;


原文地址:https://www.cnblogs.com/FlyLolo/p/7128377.html