Counterpart to -application:openURL:sourceApplication:annotation:

南楼画角 提交于 2019-11-29 11:49:32

问题


iOS SDK 4.2 includes a new UIApplicationDelegate method called application:openURL:sourceApplication:annotation:. It is a replacement for application:handleOpenURL: and offers more information about the calling application: not only do we get the bundle identifier of the calling app, but also, in the annotation argument,

A property-list object supplied by the source application to communicate information to the receiving application.

Great, this should offer a lot of opportunities for a more direct interaction between multiple third-party apps!

The only problem is: how do I invoke this mechanism on the side of the calling app? -[UIApplication openURL:] seems unchanged and does not offer any way to pass a property list along with the URL. Do you know how a calling app could do that with iOS SDK 4.2?


回答1:


You need to use the new Document Interaction classes, specifically you can send this data via the annotation property of UIDocumentInteractionController. See also:

  • UIDocumentInteractionController Reference
  • Document Interaction Topics


来源:https://stackoverflow.com/questions/4259383/counterpart-to-applicationopenurlsourceapplicationannotation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!