写真ギャラリーからの画像パスの配列があります。それらの写真を Facebook アプリで公開する必要があります。しかし、エラー 324、「アップロード ファイルが必要です」が表示されます。パスから NSData を取得する方法が間違っていると思います。何か助けはありますか?
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString: URLImages[i]]];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
messageTextView.text, @"message", imageData, @"source", nil];
しかし、プロジェクト内で画像をハードコーディングすると、機能します
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"IMAG0386" ofType:@"jpg"];
NSData *imageData = [NSData dataWithContentsOfFile:filePath];
mosaicShareImages[i]]];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
messageTextView.text, @"message", imageData, @"source", nil];