I'm trying to follow the lesson for Core Date in the "Cocoa Programming for Mac OS X" book, 3rd ed. (Ch.11), and I built an app using Core Data (so I didn't write any code - it's all IB connections and bindings) that when I run, an exception is thrown. But I have no idea how to figure out what threw the exception or why. Since I didn't write any code myself, it doesn't show an error on a particular line of code.
The exception is thrown right when the program starts.
In the debugger, in the Thread list, it shows:
Does that mean the formatter I applied to one of the columns in my table view is wrong somehow? There is no data yet, as the program just started - so the table view is empty.
Can anyone help shed some light?
Thanks!
Greg
The exception is thrown right when the program starts.
In the debugger, in the Thread list, it shows:
Code:
0 objc_exception_throw
1 +[NSException raise:format:arguments:]
2 +[NSException raise:format:]
...
22 main
Does that mean the formatter I applied to one of the columns in my table view is wrong somehow? There is no data yet, as the program just started - so the table view is empty.
Can anyone help shed some light?
Thanks!
Greg