PDA

View Full Version : console logs showing excetion




McBgnr
Nov 18, 2009, 12:56 AM
Hello,

I am getting the following in the console logs on Mac 10.4.11 Server. The code has been compiled using 10.5 SDK.

*** NSThread: ignoring exception 'Invalid parameter not satisfying: aString != nil' that raised during thread perform of target 0x14c920 and selector 'updateUI:'

I am note sure how to debug this? Suggestion are welcome.



HiRez
Nov 18, 2009, 01:36 AM
Hard to say without seeing your code but it it looks like you're probably passing a null pointer somewhere (perhaps not initialized or released early, or not accessible from that thread).

If you run the code using the Xcode debugger it may show you exactly where in your code it's happening.