基于UITableView定时器的显示单元

时间:2015-03-18 14:01:22

标签: ios uitableview

我有一系列产品要在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;
}

MyResults.m:

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

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

从我的研究中我发现了两种方法,但无法让它们起作用:

方法1:insertrowsatindexpaths

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

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

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

方法2:heightforrowatindexpath

数组在tableView中完全加载,高度设置为0并在达到TIMELINE时间时恢复正常。我可以将它设置为0,但无法确定如何设置NSTimer以给它原始高度。

我不确定这是否是一个很好的解决方案,特别是在内存管理问题上。任何想法都赞赏。

奖金:单元格显示必须是动画

1 个答案:

答案 0 :(得分:2)

假设您有一个带UITableView的视图控制器,您还需要保留一个本地timeStart变量和两个数组 - 一个用于产品,另一个用于我们已经添加到表视图的产品:< / p>

 @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委托。

 #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;
}

希望这能满足您的要求(也包括动画)。