Objective-c : Accessing variadic arguments in method [duplicate]
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to create variable argument methods in Objective-C Variable number of method parameters in Objective C - Need an example Following is an example of a method having variadic arguments. - (void)numberOfParameters:group,... { NSLog(@"%@",group); } In above method, I know to access the first one of the variadic arguments. Would you please help me for accessing the others as well? I am just going through ObjC.pdf