我有一个带有红色UITableViewCell
的自定义UIView
,当我选择UITableViewCell
时,它会变为透明。
我不希望这种情况发生。有没有办法保持UIView
的选择颜色?
仅关于该视图的配置。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *kCellIdentifier = @"Cell Identifier";
DetailsCell *cell = (DetailsCell *) [tableView dequeueReusableCellWithIdentifier: kCellIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"DetailsCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.myView.layer.cornerRadius = 5;
cell.myView.layer.masksToBounds = YES;
return cell;
}
答案 0 :(得分:1)
在视图中添加标记。
yourview.tag = 3;
而在tableView的didSelectRowAtIndexPath
方法中添加此代码
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//get the cell which is selected
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
//set tempView color of selected cell bcoz when cell selected all view color is gone
UIView *tempView=[selectedCell viewWithTag:3];
//set your color whatever you want
tempView.backgroundColor = [UIColor colorWithRed:(112/255.0) green:(136/255.0) blue:(213/255.0) alpha:1];
}
<强>更新强>
您也可以选择单元格选择颜色为NONE来执行此操作。将此代码放在cellForRowAtIndexPath
cell.selectionStyle = UITableViewCellSelectionStyleNone;
答案 1 :(得分:1)
您还可以使用UITableViewCell的setHighlighted方法撤消默认行为所做的任何更改。
答案 2 :(得分:0)
您可以使用所需的颜色设置自定义背景视图。您执行此操作的位置将根据您配置单元格的方式而有所不同。
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = // Your color (cell.backgroundColor perhaps);
cell.selectedBackgroundView = bgColorView;
答案 3 :(得分:0)
如果您确实想要显示选择(使用蓝色)但是使用您给出的颜色保留视图,则可以将selectionStyle设置为nil,就像在答案中所做的那样(或在IB中设置),然后在代码中执行此操作:
在RDCell.m中:
@implementation RDCell
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
self.backgroundView = [[UIView alloc] init];
self.backgroundView.backgroundColor = [UIColor clearColor];
}
return self;
}
在表视图控制器中:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
RDCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.label1.text = self.theData[indexPath.row];
if ([self.selectedPath isEqual:indexPath]) {
cell.backgroundView.backgroundColor = [UIColor blueColor];
}else{
cell.backgroundView.backgroundColor = [UIColor clearColor];
}
return cell;
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
self.selectedPath = indexPath;
[self.tableView reloadData];
}