Why this function doesn't work??
Why this function doesn't work??
- Subject: Why this function doesn't work??
- From: Roberto <email@hidden>
- Date: Fri, 12 Dec 2003 17:04:18 +0100
I've done all as the tutorials and Guides tell.
I would like to add a value into a field of an NSTableView, calling a
routine that add a value into the Array.
Why this routine doesn't work??
// This function is under a Istance for NSTableView on DataSource
- (void) addComic: (id) newEntry
{
[comicsArray addObject: newEntry];
}
//This is the function that call the routine to add a value into a
NSTableView Field
comicDataSource *comicD;
comicD = [[comicDataSource alloc] init];
[comicD addComic:@"fsdfsdfaf"];
[comicsList reloadData];
Thank
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.