Re: Correct way to use contextInfo with ARC

2011-08-05 Thread Sean McBride
On Thu, 4 Aug 2011 06:36:02 -0500, Charles Srstka said: Well, I can’t test this directly, since I haven’t been able to play with ARC yet due to Apple not having graced us lowly second-class-citizen Mac developers with the Xcode 4.2 beta clang is open source and supports ARC, so you don't really

Re: Correct way to use contextInfo with ARC

2011-08-04 Thread Charles Srstka
On Aug 3, 2011, at 8:38 PM, Kevin Bracey wrote: Hi All, A case of me not grasping C or/and ARC;-) I'm trying to pass the NSMutableArray across the void to the didEndSelector so I can access it if the user clicks ok. /snippits NSMutableArray *someInfo = [NSArray arrayWithObjects:@made

Re: Correct way to use contextInfo with ARC

2011-08-04 Thread Ron Hunsinger
On Aug 3, 2011, at 6:38 PM, Kevin Bracey wrote: NSMutableArray *someInfo = [NSArray arrayWithObjects:@made , @it, @across,. nil]; Did you really want to create an NSArray (non-mutable) and then pass it off as an NSMutableArray? Since you mentioned ARC, I'm surprised the compiler didn't

Correct way to use contextInfo with ARC

2011-08-03 Thread Kevin Bracey
Hi All, A case of me not grasping C or/and ARC;-) I'm trying to pass the NSMutableArray across the void to the didEndSelector so I can access it if the user clicks ok. /snippits NSMutableArray *someInfo = [NSArray arrayWithObjects:@made , @it, @across,. nil]; [holdAlert