請問,如果我犯了錯誤,你能告訴我嗎?iOS:如何在社交網絡上分享文字和圖片?
NSString *sharedMsg=[NSString stringWithFormat:@"Hello world"];
UIImage* sharedImg=[UIImage imageNamed:@"image"];
NSArray* sharedObjects=[NSArray arrayWithObjects:sharedMsg, sharedImg, nil];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc]
initWithActivityItems:sharedObjects applicationActivities:nil];
activityViewController.popoverPresentationController.sourceView = self.view;
[self presentViewController:activityViewController animated:YES completion:nil];
在運行時,當我選擇Facebook的圖標文本丟失,圖像正確顯示。
我的xcode是6.3.1,在iPad上測試過。
https://iosdevcenters.blogspot.com/2017/08/how-to-share-content-with.html –