我有一个正在调用单独的UITableViewCell
的tableview。我有代码来布局UITableViewCell
中的单元格,这在我的tableview中正确显示。但是出于某种原因,如果我选择了单元格,则单元格中的内容将重新绘制在单元格的顶部。
有谁知道为什么会这样?我已附上代码以在下面绘制我的单元格。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == productInformationTable){
if (indexPath.row == 0) {
static NSString *CellIdentifier = @"Cell";
ProductImagesTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[ProductImagesTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
else{
cell = [[ProductImagesTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
return cell;
}
else if (indexPath.row == 1) {
static NSString *CellIdentifier = @"Cell";
ProductQuantityTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if (cell == nil) {
cell = [[ProductQuantityTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
else{
cell = [[ProductQuantityTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
return cell;
}
else if (indexPath.row == 2) {
static NSString *CellIdentifier = @"Cell";
ProductButtonsTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[ProductButtonsTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
else{
cell = [[ProductButtonsTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
return cell;
}
else {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
else{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
return cell;
}
}
else {
return nil;
}
}
我单元格的代码位于 -
之下- (void)awakeFromNib {
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
}
- (void)layoutSubviews
{
[super layoutSubviews];
self.contentView.backgroundColor = [UIColor redColor];
customButton = [[SAExpandableButton alloc]initWithFrame:CGRectMake(self.frame.size.width - 50, self.frame.size.height/2 - 15, 30, 30)];
customButton.layer.borderColor = [Styles priceRed].CGColor;
customButton.layer.borderWidth = 1.5;
customButton.layer.cornerRadius = 15;
customButton.expandDirection = SAExpandDirectionLeft;
customButton.numberOfButtons = 8;
customButton.selectedIndex = 0;
quantityLabel = [UILabel new];
quantityLabel.frame = CGRectMake(10, self.frame.size.height/2 - 10, 100, 20);
quantityLabel.text = @"Quantity";
[self addSubview:quantityLabel];
customButton.buttonTitles = [NSArray arrayWithObjects:@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8", nil];
[self addSubview:customButton];
}
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
if(cell.selectionStyle == UITableViewCellSelectionStyleNone){
return nil;
}
return indexPath;
NSLog(@"willSelectRow called");
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"Table Pressed");
}
答案 0 :(得分:1)
您不能在layoutSubviews
中创建单元格的子视图,因为它可以被调用任意次。使用initWithStyle:reuseIdentifier:
进行初始化,只需将它们布局在layoutSubviews
中(因此名称)。
此外,您必须为所有不同的细胞类型使用不同的CellIdentifier
!
修改强>
要阻止选择单元格,您应使用tableView:willSelectRowAtIndexPath:
并返回nil
以阻止选择。