How to share files between 2 local ios apps withou

2019-02-07 06:51发布

I have 2 local app "A" and "B". I want that the application "A" call the application "B" and "B" send a response to "A" with a file.

Url scheme is a good solution to call Application "B" but it's a bad solution to send files to "A".

How do I send a file from one application to another without url scheme and without external server ?

2条回答
倾城 Initia
2楼-- · 2019-02-07 07:34

I've used a combination of custom URL schemes and a UIPasteboard. I recently posted a full tutorial at http://enharmonichq.com/sharing-data-locally-between-ios-apps/.

查看更多
淡お忘
3楼-- · 2019-02-07 07:57

Other than URL option, you have an best option to use iOS keychain. See this article.

There are couple of other options mentioned here.

Another option is to use iCloud APIs.

One more, copy-paste data between Apps using UIPasteboard.

BTW what's the problem with URL solution? Apple suggest you to use URL to share data between different Apps.

查看更多
登录 后发表回答