Things I learned: Core Data Dates

If using primitive types, Core Data presents dates as NSTimeInterval instead of NSDate. I sort of knew this. No problem.

When setting value for this property – MUST use timeIntervalSinceReferenceDate.

I did not know this.

 
1
Kudos
 
1
Kudos

Now read this

View Hierarchy Recursion

Just a couple notes here, nothing earth shattering. If you have a custom UITableViewCell with controls of some sort and you want to know in which cell a the value of a control changed, there are a few ways, one of which is bad, one of... Continue →