What I want to do is exchange data between plists via bluetooth from one iPad to another. Short summary of my situation, I have dictionary that each plist fills from each iPad and it goes kind of like this:
iPad1 would have: MAINdictionary(dictionary1(dictionaryA, dictionaryB, dictionaryC), dictionary2(dictionaryD, dictionaryE, dictionaryF))
iPad2 would have: MAINdictionary(dictionary1(dictionaryG, dictionaryH, dictionaryI), dictionary2(dictionaryJ, dictionaryK, dictionaryL))
The parenthesis indicate that the dictionary contains the items within the parenthesis. I would like my final result to have both iPads being clones of each other and contain an updated list with all data like this:
MAINdictionary(dictionary1(dictionaryA, dictionaryB, dictionaryC, dictionaryG, dictionaryH, dictionaryI), dictionary2(dictionaryD, dictionaryE, dictionaryF, dictionaryJ, dictionaryK, dictionaryL))
I could most likely code the solution, I'm just having difficulty coming up with a strategy. I am fairly new to Core Data, so go a little easy on me if you can please.