I implemented association with files in my app that works pretty great but I still have ine problem that i cannot fugire out.
im my
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
I have this code. it doesn't work when the app become active from background.
NSURL *url = (NSURL *)[launchOptions valueForKey:UIApplicationLaunchOptionsURLKey];
any suggestion how can i make this work ?
Thanks.