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 & I am reading page number 35 & line number is 4