Re: Displaying NSArray in NSTableView
Re: Displaying NSArray in NSTableView
- Subject: Re: Displaying NSArray in NSTableView
- From: Quincey Morris <email@hidden>
- Date: Mon, 17 Nov 2008 11:01:57 -0800
On Nov 17, 2008, at 04:03, 양승준 wrote:
Hi, I'm trying to display data in an array to a table view. The
table view shows three rows, but no data in them. What did I do
wrong? In IB, I connected the table view to the delegate in File's
owner. Many thanks!
Here is MyDocument.h:
#import Cocoa.h>
@interface MyDocument : NSDocument
{
IBOutlet NSTableView *parTableView;
NSArray *parBuffer;
}
- (int)numberOfRowsInTableView:(NSTableView *)aTable;
- (id)tableView:(NSTableView *)aTable objectValueForColumn:
(NSTableColumn *)aCol row:(int)aRow;
@end
These are data source methods, not delegate methods. Did you connect
the table view's data source to the document?
_______________________________________________
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