1
vote
Can you Bind to the timeInterval attribute of an NSDatePicker?
Sadly, no. The timeInterval property of the date picker is not even properly key-value observable. Basically, you're stuck either setting up an action method or using the delegate validation meth …
1
vote
Manual Core Data schema migration without “document changed” warning?
I haven't run across this particular situation, but I have a few guesses. First, instead of using -removeItemAtPath: and -moveItemAtPath: when you want to switch files, use the FSExchangeObjects() …
1
vote
How do you sync a Core-Data application between a Mac and a iPhone?
Core Data does not exist on the iPhone, so you'll need to use something else for the iPhone portion at least. In fact, if you want to share a significant amount of code between the iPhone and Mac …
