as the title says i wanna know how i can recognize that new file have been added to my App for example over an iTunes Sync. In iOS4 i used the methods
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
or
- (void)application:(UIApplication *)application didBecomeActive
But since iOS 5, this is useless because the app will not enter the Background and become active after a sync. It stays active. So is there a way to solve this?
regards
Ralf