tags:

views:

11

answers:

0

So I am creating an application where the user can make entries into a UITableView for whatever purpose. I'm using a core data store to store information.

Each entry has a specified time it was entered.

In order to best work with these Entries and filter them for different views of the data, I am trying to ascertain the best way to handle representing them by month per page/table.

My specifications are to allow for the last 10 years including the current one clearly.

I was thinking I could have entries[yearLimit][monthLimit] and just move within this pushing an arrow left/right to iterate up or down in month.

Then upon fetching data from the core data store I'm using, test for the creation date of each entry and add it to the corresponding 'month' array element for displaying as discussed.

Will I strike issues with Localisation because of international date formats being different? Does using the inbuilt date classes for this sort of functionality assist you in avoiding this?

Can anyone point out any good resources or examples at all please?