UITableView自定义cell更换选中的背景色

UITableView自定义cell更换选中的背景色


- (void)awakeFromNib {

    // Initialization code

      self.selectedBackgroundView = [[UIView alloc] initWithFrame:self.frame];

    self.selectedBackgroundView.backgroundColor = [UIColor colorWithWhite:1 alpha:0.2];

}

你可能感兴趣的:(代码)