UIActivityViewControllerを使用してアプリの画像を共有しようとしています。これはソースコードです:
UIImage *sourceImage = [[UIImage alloc] initWithContentsOfFile:[[self currentMedia] path]];
NSArray *activityItems = @[sourceImage];
UIActivityViewController *avc = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
avc.excludedActivityTypes = [NSArray arrayWithObjects:UIActivityTypePrint, UIActivityTypeCopyToPasteboard, UIActivityTypeAssignToContact, UIActivityTypeSaveToCameraRoll, nil];
[self presentViewController:avc animated:YES completion:nil];
[avc release];
[sourceImage release];
1つの問題を除いて、すべて正常に機能します。サービスピッカーにサービス名(Eメール、Twitter、Facebookなど)が表示されません。以下のスクリーンショットを見てください。
私は何か間違ったことをしていますか?