how to pass variable arguments to another method?
AFAIK ObjectiveC (just like C and C++) do not provide you with a syntax that allows what you directly have in mind. The usual workaround is to create two versions of a function. One that may be called directly using … and another one called by others functions passing the parameters in form of a … Read more