I am writing an Tab-Based iPhone application (3.1.2). The purpose of this application is to gather and process data from the GPS, accelerometer, etc. from one view, and then, once data collection has finished, pass this data to another view in order to graph the values. What is the best way to pass this data? Would it make sense to use SQLite or CoreData, or is there some other more expedient method? The graphing and data collection both work separately, but I am at a loss for how to pass the values between the two. I have read that this is frowned upon, but can I reference the instance of the graphing viewcontroller from the application's UITabBarController in order to pass the data?
Thanks,
James