aslana
aslana

Reputation: 20

How to send get data between ios apps without launching

I want to use an ios application like proxy. There will be various application installed on same device and all applications will communicate with server via proxy application.

I will send request to proxy application, Proxy application will handle request, send it to servers and send response to the various applications.

When I use URLScheme this will launch application and bringd it front. I dont want applciation launch.Is it possible to make this? Use an application lie a service?

Upvotes: 0

Views: 189

Answers (2)

Martin-Gilles Lavoie
Martin-Gilles Lavoie

Reputation: 584

For sign-in across many apps, you should be using the KeychainManager and a shared sub-domain with an entitlement linking the apps together with a keychain-access-group.

See How to share keychain data between iOS applications

Upvotes: 0

user529758
user529758

Reputation:

The AppSupport framework exposes an Objective-C class suited for interprocess communication: CPDistributedMessagingCenter. You can read about its usage and details about how it is implemented here.

Upvotes: 1

Related Questions