ABMetadataValidateOperation crash

2008-09-07 Thread Chris Meyer
egin, so that I have some chance of reproducing this error? Anyone from Apple know what the log message that is crashing in the address book framework is supposed to be? It looks like it's missing an argument or has been localized wrong. -Chris Meyer Thread 13 Crashed: 0 com.

Re: Using C++ classes from Objective C

2008-03-20 Thread Chris Meyer
An easy way of reference counting using Obj-C++ is to use the boost libraries with boost::intrusive_ptr and these definitions: // file.h namespace boost { void intrusive_ptr_add_ref( id object ); void intrusive_ptr_release( id object ); } // file.m namespace boost { void intru

CILinearGradient on Leopard

2008-03-20 Thread Chris Meyer
I read the tech note for 10.5 describing changes to CILinearGradient and how "for applications compiled on Mac OS X v10.4, these filters continue to behave on Mac OS X v10.5 as they did previously." Trying to interpret this imprecise statement, I read it as "for applications compiled against the 10

Breaking on console output?

2008-03-18 Thread Chris Meyer
In older versions of Xcode (2.5!) it used to be possible to break on console output by putting a breakpoint on NSLog. Is there any equivalent breakpoint to set to stop on console messages in Xcode 3.x (or 10.5)? I'm getting a message like ": CGImageSourceCreateWithData data parameter is nil\n" Of