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.

I have copy my sqlite DB in icloud and I want to use that icloud sqlite DB as insert/update and delete. I did code for it but it is not working in other device(I have 2 devices). Means when I perform any DB operation it is working for one this other device does not show any change in device. If I Insert one record in iPhone it does not show in iPad. I am useing copyItemAtPath,removeItemAtPath and removeItemAtURL methods from FileMenager class.

It's really urgent.

Thanks

share|improve this question
I recommend to use Core Data. – hoshi Feb 6 '12 at 5:19
1  
I think Core Data can insert/delete more than one data, too. If you use raw SQLite, you must do all the synchronization by yourself. But I heard that Core Data does the synchronization automatically. – hoshi Feb 6 '12 at 10:27
Yes I did it thanks – user1191581 Feb 15 '12 at 5:49

1 Answer

up vote 2 down vote accepted

Use CoreData + iCloud. Check out https://devforums.apple.com/thread/126670?tstart=0 you should have Developer acc to access the forum.

share|improve this answer
Yeah I did it thanks – user1191581 Feb 15 '12 at 5:49
you can mark the answer as accepted if it really helped you. – Kostiantyn Sokolinskyi Feb 15 '12 at 16:35

Your Answer

 
discard

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