如何将我的iOS应用程序中的某些数据(例如PDF或图像)共享给其他应用程序。我的意思是当用户可以选择合适的应用程序来共享我的数据时,如何调用模态屏幕? 我找不到任何API,但我很确定它存在。
答案 0 :(得分:1)
使用UIDocumentInteractionController:
UIDocumentInteractionController* docController = [[UIDocumentInteractionController alloc] init];
docController.URL = urlToFile;
然后呈现
[docController presentOptionsMenuFromBarButtonItem:barBtnItem animated:YES];
答案 1 :(得分:0)
应用程序之间的通信为您的应用程序提供了利用其他应用程序功能,在应用程序之间发送和接收数据以及提供“正常工作”的丰富用户体验的机会。
查看此教程iOS SDK: Working with URL Schemes可能对您有所帮助。