On Sat, Oct 11, 2008 at 1:57 PM, Seth Willits <[EMAIL PROTECTED]> wrote: > If it's what I think you're talking about then: No, nil is used as a marker > for the variable argument list to say "this is the end of the list." It's > not actually inserted into the dictionary at all. Why it's required is > really beyond me, but it's simply an Obj-C syntax thing.
It's required because the arguments are simply passed on the stack one after the other. Their size is known from the type, but not their number. The nil is a sentinel so the code doesn't simply fall off the end of the stack and into garbage memory looking for parameters. --Kyle Sluder _______________________________________________ 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 [EMAIL PROTECTED]