Re: Two Dimensional Array

2008-09-12 Thread Graff
On Sep 12, 2008, at 3:24 PM, Graff wrote: // create the 2-D array NSArray *twoD = [NSArray arrayWithObjects: [NSMutableArray new], [NSMutableArray new], [NSM

Re: Two Dimensional Array

2008-09-12 Thread Graff
On Sep 12, 2008, at 5:05 AM, Jordon Hirshon wrote: I'm new to Objective-C. Can someone suggest an approach to building a two dimensional array of integers? You can either make an NSArray that contains other NSArrays or just use a c-style multidimensional array. example of usi

Re: Two Dimensional Array

2008-09-12 Thread Jamie Hardt
]; etc... This will perform more slowly but will be much less painful to work with. What specifically are you trying to do? On Sep 12, 2008, at 5:05 AM, Jordon Hirshon wrote: I'm new to Objective-C. Can someone suggest an approach to building a two dimensional array of int

Re: Two Dimensional Array

2008-09-12 Thread Shawn Erickson
On Fri, Sep 12, 2008 at 5:05 AM, Jordon Hirshon <[EMAIL PROTECTED]> wrote: > I'm new to Objective-C. Can someone suggest an approach to building a two > dimensional array of integers? Objective-C is a super set of C and you question appears to be more of a C question. In othe

Two Dimensional Array

2008-09-12 Thread Jordon Hirshon
I'm new to Objective-C. Can someone suggest an approach to building a two dimensional array of integers? Thanks, Jordon ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments t