gpt4 book ai didi

ios - 基于 UITableView 计时器的显示单元格

转载 作者:行者123 更新时间:2023-11-29 10:32:01 25 4
gpt4 key购买 nike

我有一系列产品要显示在 tableView(动态单元格)中:

{"Products" :
[
{
"NAME": "MyProduct1",
"TIMELINE": 4
},
{
"NAME": "MyProduct2",
"TIMELINE": 10
},
{
"NAME": "MyProduct3",
"TIMELINE": 18
},
...
]}

TIMELINE 属性应该定义显示单元格之前的秒数。

时间线的起点在别处定义,并不总是等于 0。例如,它可以是 12,在这种情况下:

  • 产品 1 和 2 将完全隐藏
  • tableView 将加载为空
  • 产品 3 将在 6 秒后出现

我的细胞充满了:

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

MyResults* media = [MyResults getInstance];
[media productDetails:indexPath.row];

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"results" forIndexPath:indexPath];
UILabel *nameLabel = (UILabel *)[cell viewWithTag:666];
nameLabel.text = media.productName;
cell.clipsToBounds = YES;
return cell;
}

我的结果.m:

_products = [json objectForKey:@"Products"];

-(void)productDetails:(NSUInteger)row {
NSDictionary* details = [_products objectAtIndex:row];
_productName= [details objectForKey:@"NAME"];
}

根据我的研究,我发现了两种方法,但无法使它们起作用:

方法一:insertrowsatindexpaths

我想过滤主数组,使其只保留 TIMELINE > STARTINGPOINT 产品。

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(%@ > %@)", timelineValue, startingPoint];

我很难检索 timelineValue,因为我的产品数组首先使用 cellForRowAtIndexPath 进行了解析。

方法二:heightforrowatindexpath

数组在tableView中完全加载,高度设置为0,到达TIMELINE时间后恢复正常。我可以将它设置为 0,但不知道如何设置 NSTimer 以赋予它原始高度。

我不确定这是否是一个好的解决方案,尤其是在内存管理问题上。任何想法表示赞赏。

好处:单元格显示必须是动画的

最佳答案

假设您有一个带有 UITableView 的 View Controller ,您还需要保留一个本地 timeStart 变量和两个数组 - 一个用于产品,一个用于我们已经添加到 TableView 中的产品:

 @interface ViewController () <UITableViewDataSource, UITableViewDelegate>

@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (nonatomic, strong) NSArray *products;
@property (nonatomic, strong) NSMutableArray *dataSource;
@property (nonatomic) NSInteger timelineStart;

@end

你的 viewDidLoad 应该是这样的:

 - (void)viewDidLoad
{
[super viewDidLoad];

self.dataSource = [NSMutableArray array];

self.timelineStart = 0; // TODO: CHANGE IT TO WHAT YOU NEED
self.products = [NSArray arrayWithObjects:@{@"NAME" : @"MyProduct1", @"TIMELINE" : @(4)}, @{@"NAME" : @"MyProduct2", @"TIMELINE" : @(10)}, @{@"NAME" : @"MyProduct3", @"TIMELINE" : @(18)},nil];
// Change the products parsing to whatever you need

for (NSInteger i = 0; i < self.products.count; i++) {
NSDictionary *obj = [self.products objectAtIndex:i];
if ([[obj objectForKey:@"TIMELINE"] integerValue] > self.timelineStart) {
NSInteger timeInterval = [[obj objectForKey:@"TIMELINE"] integerValue] - self.timelineStart;
[NSTimer scheduledTimerWithTimeInterval:timeInterval target:self selector:@selector(addNewProductToTableView:) userInfo:obj repeats:NO];
}
}
}

- (void)addNewProductToTableView:(NSTimer *)timer
{
NSDictionary *obj = [timer userInfo];

dispatch_async(dispatch_get_main_queue(), ^{

NSMutableArray *indexPaths = [NSMutableArray array];
NSInteger currentCount = self.dataSource.count;
[indexPaths addObject:[NSIndexPath indexPathForRow:0 inSection:0]];

[self.dataSource insertObject:obj atIndex:0];

// tell the table view to update (at all of the inserted index paths)
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];

});
}

最后必须有 tableview 委托(delegate)。

 #pragma mark - UITableViewDataSource

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.dataSource count];
}

#pragma mark - UITableViewDelegate

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyIdentifier"];
}

NSDictionary *item = [self.dataSource objectAtIndex:indexPath.row];
cell.textLabel.text = [item objectForKey:@"NAME"];

return cell;
}

希望这能满足您的需求(它还包括动画)。

关于ios - 基于 UITableView 计时器的显示单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29124132/

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