I am trying to create an array that will store a float calculated from user inputs from two UITextFields. From searching the web I think I should be using an NSMutableArray. Ideally, there will be no set size of the array, as users enter more values I want it to expand, is that possible?
These values need to be saved in the app, even after it has been closed. From what I gather there are two options, CoreData or storing in a .plist file. I want to do the easier of the two, as I am still a beginner with iOS development.
If anyone could help me out and point me in the right direction as to setting up this array and saving the data, I would really appreciate it.
Thanks in advance!