I have a few objects in a VC that I want to be accessible from my App Delegate.
My VC launches another app, which does a callback to my app. This callback triggers a method in my App Delegate:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
But I want to access some objects in this method that I had set in that previous VC. Any ideas how?
Use
In delegate.m. Make object data type variable in .h and set its property. Write a method like this:
How to Use: