since the name says that I want to know how I can find out that a new file has been added to my application, for example, through iTunes Sync. In iOS4, I used methods
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
or
- (void)application:(UIApplication *)application didBecomeActive
But with iOS 5, this is useless, because the application will not go into the background and will not become active after synchronization. He remains active. So is there a way to solve this?
considers
Ralph
source share