1

我第一次遇到这样的问题,需要你的帮助。

我正在获取 twitter 用户信息,并且使用 NSLog 我可以在控制台中看到它,但是当我在标签或文本视图上显示它时,它需要更多时间,几乎是 1 分钟。

我正在使用的代码是....

_accountStore = [[ACAccountStore alloc] init];
            ACAccountType *accountType = [_accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

 [_accountStore requestAccessToAccountsWithType:accountType options:nil
                                                completion:^(BOOL granted, NSError *error)

             // Request access from the user to use their Twitter accounts.

             {
                 // Did user allow us access?
                 if (granted == YES)
                 {
                     // Populate array with all available Twitter accounts
                     NSArray *arrayOfAccounts = [_accountStore accountsWithAccountType:accountType];
                     [arrayOfAccounts retain];

                     // Populate the tableview
                     if ([arrayOfAccounts count] > 0)
                         NSLog(@"print %@",[arrayOfAccounts objectAtIndex:0]);
                     //
                     ACAccount *twitterAccount = [arrayOfAccounts objectAtIndex:0];

                     NSString *userID = [[twitterAccount valueForKey:@"properties"] valueForKey:@"user_id"];
                     NSLog(@"print user id is %@",userID);// Here i can see immediately 

                    testLabel.text=[NSString stringWithFormat: @"Hi ,%@",userID];// Here it is taking more time...
4

2 回答 2

2

您正在从异步线程更新您的 UI 元素。这就是问题发生的原因。

代替:

testLabel.text=[NSString stringWithFormat: @"Hi ,%@",userID];

和:

dispatch_sync(dispatch_get_main_queue(), ^{

   testLabel.text=[NSString stringWithFormat: @"Hi ,%@",userID];

});

请记住:您应该只从主线程更新您的 UI 元素。

在您的情况下,您在 a 中编写代码block,块将在异步线程中执行,而不是在主线程中。您正在从那里更新您的 UI 元素。这将导致问题,因此您需要从主线程更新 UI,因为您正在使用dispatch_get_main_queue.

于 2013-03-05T05:52:34.453 回答
0

您必须确保完成块在主线程上运行。

试试下面的代码..

dispatch_async(dispatch_get_main_queue(), ^{
  testLabel.text=[NSString stringWithFormat: @"Hi ,%@",userID];
});
于 2013-03-05T05:56:45.480 回答