I have file sharing via iTunes working in my application (reference What's New in iOS 3.2) by enabling the UIFileSharingEnabled key, but according to the documentation:
"Applications that support file sharing should be able to recognize when files have been added to the Documents directory and respond appropriately."
My question is, if my application is running, and then the user decides to add a file, how do I respond to this event? And what event is it that I would respond?
In other words, I know what my iPhone application needs to do when a file is added but not sure where to put this "responding" code. Currently, if my application is running (could be running in the background as well) and a file is added, the only way to see the effects of this added file is by force-quitting the application and then re-launching the app.