gpt4 book ai didi

objective-c - deleteRowsAtIndexPaths 动画覆盖上部单元格

转载 作者:行者123 更新时间:2023-12-02 21:30:16 25 4
gpt4 key购买 nike

当我尝试将 deleteRowsAtIndexPaths 与动画 UITableViewRowAnimationTop 一起使用时,我要删除的单元格覆盖了上面的单元格(在动画中),然后消失。我做了一个小例子,其中每个单元格背景都有不同的颜色。

在删除单元格 TableView 之前,它看起来像这样:

enter image description here

当动画发生时,所选单元格(灰色)向上滑动到上方单元格的顶部,然后消失。

enter image description here

最终结果是正确的:

enter image description here

如何使选定的单元格滑动到其上方的单元格下方而不是顶部?代码很简单:

TableViewController.h:

@interface TableViewController : UIViewController

@property (weak, nonatomic) IBOutlet UITableView *tableView;

@end

TableViewController.m:

#import "TableViewController.h"


@implementation TableViewController{
int cellCount;
}

- (void)viewDidLoad
{
[super viewDidLoad];
cellCount=100;
[self.tableView reloadData];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return cellCount;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellId" forIndexPath:indexPath];
cell.backgroundColor =[self getRandomColor];
return cell;
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
cellCount--;
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];
}

-(UIColor *)getRandomColor
{
CGFloat hue = ( arc4random() % 256 / 256.0 );
CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5;
CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5;
return [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
}

@end

最佳答案

我遇到了同样的问题,并通过添加以下内容修复:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.layer.zPosition = -1;

这可确保动画“离开”的图层位于 View 中任何其他图层的下方。

关于objective-c - deleteRowsAtIndexPaths 动画覆盖上部单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22467929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com