2

** 当我长按单元格时,我会在单元格上显示倒计时计时器。但问题是,当我单击行计时器启动但突然当我单击第二个单元格计时器停止前一个单元格并启动计时器新单元格时,我单击,但我需要的主要功能是我必须显示运行前一个计时器和当前计时器。请任何人给我正确的方法。**

 -(void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer
 { AppDelegate *app=(AppDelegate *)[UIApplication sharedApplication].delegate;
   CGPoint p = [gestureRecognizer locationInView:ChatTable];
    NSIndexPath *indexPath = [ChatTable indexPathForRowAtPoint:p];


if ([[[userArray valueForKey:@"sender_id"] objectAtIndex:indexPath.row]isEqualToString: app.userId]) {

}

else{

    if (gestureRecognizer.state == UIGestureRecognizerStateBegan)
    {

        if ([imageCache objectForKey:[NSString stringWithFormat:@"%d",indexPath.row]]==NULL) {

        }
        else
        {
            self.picId=[[userArray valueForKey:@"pic_id"] objectAtIndex:indexPath.row];
            self.imageName=[[userArray valueForKey:@"imagename"] objectAtIndex:indexPath.row];
            ChatTable.userInteractionEnabled=NO;
            // self.navigationController.navigationBarHidden=YES;
            image=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
            self.pickerValue=[[userArray valueForKey:@"seconds"] objectAtIndex:indexPath.row];
            image.image=[imageCache objectForKey:[NSString stringWithFormat:@"%d",indexPath.row]];
            [self.view addSubview:image];
            [self showTableTime:indexPath];
        }
    }
    else if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
        UITableViewCell * myCell = [ChatTable cellForRowAtIndexPath:indexpathForTimer];
        UILabel * myLabel = (UILabel *)[myCell viewWithTag:101];
        myLabel.text=@"";
        //  self.navigationController.navigationBarHidden=NO;
        [image removeFromSuperview];
    }

}

}

-(void)showTableTime:(NSIndexPath *)indexPath
 {
  secondsLeft=[self.pickerValue integerValue];
   indexpathForTimer=indexPath;
   [self countDownTimer];

 }

- (void)countDownTimer {

  timer =[NSTimer scheduledTimerWithTimeInterval:1.0 target:self           selector:@selector(updateCounter:) userInfo:nil repeats:YES];

   }
   - (void)updateCounter:(NSTimer *)theTimer {

UITableViewCell * myCell = [ChatTable cellForRowAtIndexPath:indexpathForTimer];
UILabel * myLabel = (UILabel *)[myCell viewWithTag:101];
if (secondsLeft >0) {
    secondsLeft --;
    UILabel * myLabel = (UILabel *)[myCell viewWithTag:101];
    myLabel.text=[NSString stringWithFormat:@"0%d",secondsLeft];

}
else if(secondsLeft==0)
{
    [self.image removeFromSuperview];
    [timer invalidate];
    ChatTable.userInteractionEnabled=YES;
    myLabel.text=@"";
    [self SendRequsetToServerOfSeenImage];

}
else
{
}


}
4

3 回答 3

0

试试这个

- (void)countDownTimer 
{

timer =[NSTimer scheduledTimerWithTimeInterval:1.0 target:self           selector:@selector(updateCounter:) userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop]addTimer:timer forMode:NSRunLoopCommonModes];

 }  
于 2013-04-03T12:09:20.477 回答
0

问题是您只存储一个计时器/索引路径对(您只使用变量“timer”和“indexPathForTimer”)。一旦激活第二个单元格,变量 indexPathForTimer 将被第二个单元格的 indexPath 覆盖,因此您只更新第二个单元格。

我建议您将变量 timer 转换为 NSMutableArray 并将 indexPathForTimer 转换为 NSMapTable 然后执行

// code to init the map table, perform this where you initialize your variables
// (you may want to use weakToStrong or weakToWeak depending on your memory
// management)
indexPathForTimer = [NSMapTable strongToStrongObjectsMapTable];

// use this code to create your timer instance with reference to the index path
// for which it was instantiated
NSTimer* newTimer = [NSTimer timerWithTimerInterval:1.0 target:self selector:@selector(updateCounter:) userInfo:nil repeats:YES];
[timer addObject:newTimer];
[indexPathForTimer addObject:indexPath forKey:newTimer];
[NSRunLoop mainRunLoop] addTimer:newTimer forModes:NSRunLoopCommonModes];

在您的 updateCounter: 方法中,您可以像这样获取真正的索引路径

currentIndexPath = [indexPathForTimer objectForKey:theTimer];
于 2013-04-03T12:29:35.283 回答
0

我认为您想在视图或每个单元格上运行多个计时器。但是处理在不同单元上运行的多个计时器变得复杂。

于 2013-04-05T12:26:44.257 回答