IOS... NS_REQUIRES_NIL_TERMINATION

Source: Internet
Author: User

IOS... NS_REQUIRES_NIL_TERMINATION

The official example is good. Please note it here.

 

#import 
 
  @interface NSMutableArray (variadicMethodExample)- (void) appendObjects:(id) firstObject, ...; // This method takes a nil-terminated list of objects.@end@implementation NSMutableArray (variadicMethodExample)- (void) appendObjects:(id) firstObject, ...{id eachObject;va_list argumentList;if (firstObject) // The first argument isn't part of the varargs list,  {                                   // so we'll handle it separately.  [self addObject: firstObject];  va_start(argumentList, firstObject); // Start scanning for arguments after firstObject.  while (eachObject = va_arg(argumentList, id)) // As many times as we can get an argument of type id      [self addObject: eachObject]; // that isn't nil, add it to self's contents.  va_end(argumentList);  }}@end 
 

 

Most often seen is in UIAlertView.

 

- (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id /*
 
  */)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION;
 


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.