Alright, here is the skinny. I've searched on this but haven't found this question quite right. (I'm writing this in xcode fyi)
I have been tasked with something that should be easy and it probably is but I'm having trouble getting started...
I need to download JSON data and it is a list of objects that only have three items, date, tite, contents. Basically 3 strings. The date is not the date created but the date the whole object is intended for. The users are wanting to be able to preload a few weeks at a time w/o people being able to see the future dates.
I can download the JSON data no problem, I can display it in a list, not a problem. I am not certain how to make the program ignore objects with a date not equal to today.
Anyone have any insight into this? Below is what one of the test objects looks like.
@type: "Devotional",
@url: "http://api.storageroomapp.com/accounts/50ff0ad80f66027d84001680/collections/51c1ba270f6602499f0000ae/entries/51c1bc390f6602442c0002ec",
@collection_url: "http://api.storageroomapp.com/accounts/50ff0ad80f66027d84001680/collections/51c1ba270f6602499f0000ae",
@version: 2,
@trash: false,
@created_at: "2013-06-19T14:12:09Z",
@updated_at: "2013-07-08T19:38:51Z",
devotional_date: "2013-07-08",
devotional_title: "Test Today Devotional",
devotional_body: "This is a test of what Today's Daily Devotional would look like!"
},
Thanks in advance for any help.