I need some help on something. I have two apps under my account.
I need to pass a custom object from App A to App B. How can I do this using app groups ?
I saw that using URL schemes is a old a way of doing it.
So what is the newest way of passing data two apps ?
IN YOUR APP A (SAVE OBJECT)
Under capabilities, Click "+" to add an App Group
In your Object Class, you need to extend the class you want to share to NSObject and NSCoding
Save Data from your App A
IN YOUR APP B (GET OBJECT)
Add the same app group as the App A (see 1.1)
In the View controller you want to get the App A object :
Note that you need to implement your Person class in both file, the best practice would be to create your own framework with your model in it