Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app has a feature for File Sharing through iTunes, and I want to get a notification/a method call after the process of syncing with iTunes is finished, so that I can reload my Table View with new data from iTunes. I have tried to override - (void)viewWillAppear: but it doesn't seem to run. Anybody knows how to do this?

share|improve this question

2 Answers

up vote 1 down vote accepted

I found the solution myself. The method

- (void)applicationDidBecomeActive:(UIApplication *)application

will be called after the iTunes syncing process. I just need to overwrite it and fill in the refresh methods

share|improve this answer

Unfortunately, this no longer works in iOS 5.0 since syncing does not affect the active application state.

share|improve this answer
any body got the solution for this in iOS5.0 – Iducool Dec 1 '11 at 7:14
I created a repo that monitors the system for file changes: github.com/hwaxxer/MHDirectoryWatcher – hwaxxer Dec 19 '11 at 22:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.