Re: High Scores local to iPhone app

2009-05-05 Thread Bill Bumgarner
On May 5, 2009, at 11:50 AM, Eric E. Dolecki wrote: Probably only 10... however I understand that a plist can't store complex data... how would this work for pairs? Normally I'd only be able to store just a list of scores, not paired with names, correct? A property list is composed of a rela

Re: High Scores local to iPhone app

2009-05-05 Thread Peter Blazejewicz
hi Eric, On May 5, 2009, at 8:23 PM, Bill Bumgarner wrote: On May 5, 2009, at 11:18 AM, Eric E. Dolecki wrote: I am looking to save and read name/score pairs and started looking at SQLite to do this. I'm checking the Books sample application and there seems to be tons of code in there to ba

Re: High Scores local to iPhone app

2009-05-05 Thread J. Roman
You could store it as an array of dictionaries or arrays, for example. On 5-May-09, at 2:50 PM, Eric E. Dolecki wrote: Probably only 10... however I understand that a plist can't store complex data... how would this work for pairs? Normally I'd only be able to store just a list of scores, n

Re: High Scores local to iPhone app

2009-05-05 Thread Randall Meadows
On May 5, 2009, at 12:50 PM, Eric E. Dolecki wrote: Probably only 10... however I understand that a plist can't store complex data... how would this work for pairs? Normally I'd only be able to store just a list of scores, not paired with names, correct? Wrong. A plist can contain an NSDi

Re: High Scores local to iPhone app

2009-05-05 Thread Eric E. Dolecki
Probably only 10... however I understand that a plist can't store complex data... how would this work for pairs? Normally I'd only be able to store just a list of scores, not paired with names, correct? On Tue, May 5, 2009 at 2:23 PM, Bill Bumgarner wrote: > On May 5, 2009, at 11:18 AM, Eric E.

Re: High Scores local to iPhone app

2009-05-05 Thread Bill Bumgarner
On May 5, 2009, at 11:18 AM, Eric E. Dolecki wrote: I am looking to save and read name/score pairs and started looking at SQLite to do this. I'm checking the Books sample application and there seems to be tons of code in there to basically provide the solution. Is there a better option than