On Jul 26, 2010, at 12:06, Chris Tracewell wrote: > -(BOOL)validateMyQuantity:(id *)ioValue error:(NSError **)outError > { > NSLog(@"%@",ioValue); > > return YES; > } > > If I use an integer or float formatter in the NSLog it works, but it just > seems to be reading the memory address. This makes me think that the ioValue > is not an object.
ioValue isn't an object -- it's just a pointer. *ioValue is the object. _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com