5

我有一个表格视图,我将所有奇数单元格高度设置为 0,在奇数单元格中我有一些标签。当它显示表格视图时,奇数单元格中的标签出现在偶数单元格中。有什么办法可以让标签消失吗?这个问题发生在 ios 6 p/s 中:在 ios 7 中:它工作正常。我已经有了方法:[tableView beginUpdates]; [tableView endUpdates];

谢谢。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

    // show odd row
    if (selectedRow == indexPath.row) return 78;

    // hide odd row  and show even row
    if (indexPath.row %2 ==0){
        return 88;}
    else{
        return 0;}
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{


    if (indexPath.row%2 == 0){


        //user click on even row -> display the next row 
        selectedRow = indexPath.row+1;

        [tableView beginUpdates];

        [tableView endUpdates];

    }
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    int index = indexPath.row / 2;

    if (indexPath.row %2 ==0){

        static NSString *CellIdentifier = @"PhraseViewCell";

        PhraseCellVietnamese *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

        NSString *phrase = [[phrases objectAtIndex:index] objectForKey:@"vietnamese"];

        NSNumber *checkFavorite =  [[phrases objectAtIndex:index] objectForKey:@"favorite"];

        NSNumber *phraseId =[[phrases objectAtIndex:index] objectForKey:@"_id"];

        [cell SetInfo:phrase :checkFavorite.intValue :phraseId.intValue];

        return cell;

    }
    else{

        static NSString *CellIdentifier = @"PinyinViewCell";

        PinYinViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

        NSString *pinyin = [[phrases objectAtIndex:index] objectForKey:@"pinyin"];

        NSString *chinese = [[phrases objectAtIndex:index] objectForKey:@"chinese"];

        NSString *voice = [[phrases objectAtIndex:index] objectForKey:@"voice"];

        [cell setInfo:pinyin :chinese :voice];

        return cell;
    }
}
4

2 回答 2

25

[单元格 setClipsToBounds:YES]; 在 cellForRowAtIndexPath 中

为我工作。希望你找到你的解决方案。

于 2013-12-17T19:41:40.400 回答
4

阅读 user2799736 答案后,我在 .xib 文件中将 Clip Subviews 更改为 YES。为我工作。

于 2014-07-25T09:00:21.167 回答