Hi all,
I am very new to app programming. I am trying to read a plist file into my app but can't figure out how to create the array in the first place and then read in the file. The plist will contain a varying number of dictionaries each consisting of 3 strings. I tried the code
based on an array of intergers I saw on another forum but Xcode says "an array of interface 'NSDictionary' is invalid". How do I create this array? Sorry to ask something that I know will be quite simple but I have not found the naswer on google yet.
I am very new to app programming. I am trying to read a plist file into my app but can't figure out how to create the array in the first place and then read in the file. The plist will contain a varying number of dictionaries each consisting of 3 strings. I tried the code
Code:
NSDictionary productList[];
based on an array of intergers I saw on another forum but Xcode says "an array of interface 'NSDictionary' is invalid". How do I create this array? Sorry to ask something that I know will be quite simple but I have not found the naswer on google yet.