Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从我在 ios 中的另一个应用程序 B 的代码中调用应用程序 A 的方法,并且还想传递参数。
如果可以,是否可以使用套接字编程,而不是请给出一些关于如何做到这一点的想法。
谢谢。
The only interprocess communication allowed by Apple on the AppStore is using URL handlers.
For more information, read here.
使用 x-callback-url 的源应用程序可以启动传递数据和上下文信息的其他应用程序,还可以提供参数指示目标应用程序在执行操作后将数据和控制权返回给源应用程序。
请参阅此链接以获取教程和示例代码。