I'm quite new to Objective-C and having trouble understanding the source code written by other developers. In the current app I'm currently working on, sometimes, I saw the comma in the method call like this one:
[UIAlertView * alert = [UIAlertView alloc] initWithTitle:<#(NSString *)#> message:<#(NSString *)#> delegate:<#(id)#> cancelButtonTitle:<#(NSString *)#> otherButtonTitles:<#(NSString *), ...#>, nil];
But I'm not quite understand what the last , nil
means even though someone told me that's the pointer that references to the location in computer memory. But it sounds really vague to me.
Can you help me understand the idea using here?