Skip navigation.
 
mlRe: NSArrayController subclass crash
FROM : mmalc crawford
DATE : Mon Feb 04 02:42:22 2008

On Feb 3, 2008, at 5:28 PM, Jaime Magiera wrote:

> -(id) newObject
> {
>         NSLog(@"New Object");
>         NSMutableDictionary *newTrackEvent = [NSMutableDictionary 
> dictionary];
>         [newTrackEvent setObject:[NSNumber numberWithInt:0] 
> forKey:@"timeValue"];
>         return newTrackEvent;
> }
>

"new"

       NSMutableDictionary *newTrackEvent = [[NSMutableDictionary alloc] 
init];

mmalc

Related mailsAuthorDate
mlNSArrayController subclass crash Jaime Magiera Feb 4, 02:28
mlRe: NSArrayController subclass crash mmalc crawford Feb 4, 02:42
mlRe: NSArrayController subclass crash Jaime Magiera Feb 4, 02:57