• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Initializing an Array
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Initializing an Array


  • Subject: Re: Initializing an Array
  • From: "John C. Randolph" <email@hidden>
  • Date: Tue, 22 Jan 2002 11:02:16 -0800

On Monday, January 21, 2002, at 07:46 PM, Andy wrote:

"John C. Randolph" wrote:

On Monday, January 21, 2002, at 02:18 PM, Michael P. Rogers wrote:

Is it possible to initialize an instance variable array in
Objective-C? PB doesn't like it when I attempt to do so in the
interface section, i.e., code like this fails:

NSString * sayings[2] = {@"Do unto",@"others"};

Try

NSArray *myArray = [[NSArray arrayWithObjects:@"Do
unto",@"others", nil] retain];

in your +initialize method instead.


I found this last night, and its certainly a good replacement for the
similar Java construct. I just wish it were better documented... does
this 'nil' end up in the NSArray after construction, ie is the length of
the above 2 or 3?

[myArray count] will return 2.

-arrayWithObjects: is a varargs method, and the nil is the list terminator.

-jcr


John C. Randolph <email@hidden> (408) 974-8819
Sr. Software Engineer, Cocoa Evangelism
Apple Worldwide Developer Relations


References: 
 >Re: Initializing an Array (From: Andy <email@hidden>)

  • Prev by Date: Re: Initializing an Array
  • Next by Date: RE: How to make Tiff with a mask?
  • Previous by thread: Re: Initializing an Array
  • Next by thread: Re: Initializing an Array
  • Index(es):
    • Date
    • Thread