NSTableView Problems
NSTableView Problems
- Subject: NSTableView Problems
- From: Barry Fawthrop <email@hidden>
- Date: Sun, 23 Nov 2008 18:13:19 -0500
I have added an NSTableView linked it's datasource and deletegate to the
Controller object
I have the two required procedures
I use the following to add data into the Table
NSMutableArray *schedule;
NSTableView *playlist;
NSString *filename;
NSString *length;
....
....
[schedule addObject: [NSArray arrayWithObjects: @"TIME", filename,
length, nil]];
[playlist reloadData];
....
....
When this is run the 3 column table just has ( ( (
that is a ( in each column [3 columns in total]
The data found within the filename and length variable
nor the "TIME" string found for the first column
are displayed
Where did I go wrong ?
Thanks in advance
Barry
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden