0

このフォーマットを使用しようとしています。私はブロックの最後の行にエラーを取得コンパイルする場合しかし、私はこのような奇妙な問題を得続ける...iOSブロックフォーマットを使用した内部コンパイルエラー

[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 

答えて

0

私のコンパイラの設定が混乱しました。私はコンピュータごとに変更されたデフォルトに設定していた。 「Apple LLVM 3.0」に設定する必要があります

関連する問題