正确的线程处理

时间:2017-03-17 07:24:41

标签: ios objective-c multithreading ios-multithreading

我遇到了需要正确线程的问题,但我似乎无法正确优化它。

这是我的方法:

-(void) method1
{
  // -1 to an NSInteger
  nsint1--;

  [self showActiviyIndicator:YES]; //act as loading screen

  [alloc database etc stuffs and retrieving of data here]

  //for loop here to check with database, and grey out button depending on database values
  for (int i = 1; i<12; i ++)
  {
  //get values from database and store into variables, then grey out the button if variables are 0.
  }

  int Val1 = [get from database]

  if Val1 = 0
  [button setTitleColor:[UIColor Grey]];

  someLabel.text = [NSString stringWithFormat:@"%ld", (long)nsint1];

  //here's where the problem lies
  [self refreshTableSessionList:xx];

  [self showActiviyIndicator:NO]
}

在[self refreshTableSessionList:xx]中,有

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)

从服务器数据库获取数据,然后是

dispatch_async(dispatch_get_main_queue(),

填充并重新加载tableViewCell。

但是当我提出

时,会发生冲突
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)
[alloc database etc stuffs and retrieving of data here] 之前

并在显示按钮时放置dispatch_async(dispatch_get_main_queue(), ,但是在循环内部,我不认为这是正确的方式。

解决这个问题的解决方案是什么?

1 个答案:

答案 0 :(得分:1)

据我了解,你不等待后台数据库的完成。

你读过多线程吗?例如,Ray's article

以简单的方式,您可以在dispatch_async等内的dipatch_async块内调用dispatch_async。

dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  // do some database stuff
  dispatch_async(dispatch_get_main_queue(), ^{
    // do some UI stuff
  });
});

所以你应该在主线程和全局队列之间切换。此外,您可以出于此目的使用代理,通知甚至反应。