0

我正在尝试习惯这种格式。但是我不断遇到这样的奇怪问题......

 [accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
        if(granted) {
            mAccounts  = [[accountStore accountsWithAccountType:accountType] retain];

            if(acctId != nil) {
                mActiveAccount = [[accountStore accountWithIdentifier:acctId] retain];
            }
        }
    }];

当我编译时,我在块的最后一行得到一个错误......

internal compiler error: in convert_all_function_calls, at tree-nested.c:1976
4

1 回答 1

0

我的编译器设置很混乱。我将其设置为默认值,每台计算机都会更改。它需要设置为“Apple LLVM 3.0”

于 2012-04-09T20:17:15.750 回答