1

我正在使用 Parse 来存储我的数据。在我的 AppDelegate 中,我想从服务器获取所有数据,然后将它们共享到我的 ViewController 但我做不到。因为我的 MainThread 总是在我收集数据线程之前完成。有没有办法先获取所有数据,或者等待数据线程完成然后执行主线程,或者其他方式来实现这一点。

这是我的代码:

@synthesize authors;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    [SCategory registerSubclass];
    [Parse setApplicationId:PARSE_APP_ID clientKey:PARSE_CLIENT_KEY];

     PFQuery *query = [SCategory query];

    // type =1 : programmes
   [query whereKey:@"type" equalTo:@1];
   [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
        if (!error) {

            // The find succeeded.
            authors = [[NSMutableArray alloc] initWithArray:objects];
            NSLog(@"inside block author: %d",[authors count]);
       } else {
            // Log details of the failure
            NSLog(@"Error: %@ %@", error, [error userInfo]);
        }
    }];



   NSLog(@"outside block author: %d",[authors count]);

        return YES;
    }

我的输出

2013-11-15 15:00:59.424 Sala[5340:70b] outside block author: 0
2013-11-15 15:01:00.804 Sala[5340:70b] inside block author: 4

我想要我的“外部区块作者 = 4”但是 >.<

4

2 回答 2

1

您不应该想要或尝试阻塞主线程。该块的全部要点是它是一个异步过程,您应该处理它。

正确的方法是:

在应用程序委托中获取数据,然后在成功块中,获取视图控制器并将数据传递给它。

或者:

将逻辑移动到视图控制器,以便在显示时决定是否需要获取数据并管理下载,然后更新其 UI。

于 2013-11-15T08:55:13.633 回答
0

我想出了解决方案,我决定不使用 findObjectsInBackgroundWithBlock 而是只使用 findobject,所以这个方法将同步运行。authors = [query findObjects];

于 2013-11-17T13:54:21.067 回答