首页 > 代码库 > 自定义cell的点击背景

自定义cell的点击背景

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

     

    // 自定义cell点击背景

    cell.selectedBackgroundView =

    [[UIViewalloc] initWithFrame:cell.frame];

    cell.selectedBackgroundView.backgroundColor = RGBCOLOR(194, 194, 194);

自定义cell的点击背景