在一个视图中,我得到了一个标签和一个表视图。标签每秒都会通过计时器更新,该计时器调用更新标签文本的功能。现在这一切都很好。但是一旦用户用手指在表格视图上滑动,标签的文本就会停止更新。
有没有办法防止这种行为?
答案 0 :(得分:2)
滚动tableview时,您的Label会停止更新,因为timer和tableView都在同一个线程上,即主线程。您可以尝试以下代码
这两个方法用于更新UILabel而不管tableView滚动
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
arrData = [NSMutableArray new];
for (int i = 0; i < 150; i ++) {
[arrData addObject:[NSString stringWithFormat:@"Row number %d",i]];
}
[self performCounterTask];
count = 10;
}
-(void)performCounterTask{
if (count == 0) {
count = 10;
}
double delayInSeconds = 1.0;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
// Your code here
if (count >= 0) {
[lblTimer setText:[NSString stringWithFormat:@"%ld",(long)count]];
count--;
[self performCounterTask];
}
});
}
这些是TableView数据源方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return arrData.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellIdentifier = @"cell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = [arrData objectAtIndex:indexPath.row];
return cell;
}
因此,基本上您需要将Lable更新部分保留在调度队列中。
希望此解决方案能为您提供帮助。快乐编码:)