iPhone アプリケーションで Facebook の自動共有に以下のコードを使用していますが、EXC_BAD_ACCESS
共有ボタンをタップするとアプリケーションがメッセージでクラッシュします。
NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];
[variables setObject:@"Yours content to be shared" forKey:@"message"];
// share prepared content to fb
fb_graph_response = [fbGraph doGraphPost:@"me/feed" withPostVars:variables];
NSLog(@"postMeFeedButtonPressed: %@", fb_graph_response.htmlResponse);
事前に感謝します。