¡@

Home 

2014/10/15 ¤U¤È 10:03:41

iphone Programming Glossary: anothermethod

how to pass variable arguments to another method?

http://stackoverflow.com/questions/2391780/how-to-pass-variable-arguments-to-another-method

to pass my variable arguments to another method. i m getting errors. how to do that void aMethod NSString a ... self anotherMethod a i m doing this but getting error. how to pass complete vararg to anotherMethod iphone ios objective c varargs share.. that void aMethod NSString a ... self anotherMethod a i m doing this but getting error. how to pass complete vararg to anotherMethod iphone ios objective c varargs share improve this question AFAIK ObjectiveC just like C and C do not provide you with.. by others functions passing the parameters in form of a va_list. .. obj aMethod @ test this d parameter 1337 obj anotherMethod @ test that d parameter 666 .. void aMethod NSString a ... va_list ap va_start ap a self anotherMethod a withParameters..