I have this data that I'd like to save to plist. MONTH and DAY are the system date integers. I know how to get them.
MONTH
DAY
int, string, int
Example:
5
25
10, text, 50
I have a UITableView in which I must import the data on this way:
If the system month is 3, search the plist for the key 3 and populate the table with only days of the month 3.
What is the best approach for this?
EDIT:
The year is not important. In the table, it should be a list of months, and when pressed it should list all the days associated with the particular month. And every day should have all the data associated to particular day.
I am confused on how to structure the data in the plist.