Having some issues with the ... in ObjectiveC.
I\'m basically wrapping a method and want to accept a nil terminated list and directly pass
How about constructing an NSInvocation object? Since arguments must be passed by pointer, you could pass the pointer to the nil-terminated list.
You could also iterate over the parameters using marg_list() and construct a nil-terminated list yourself.
These are just simple suggestions; I haven't tried them out.