NSTableView with LARGE dataset
NSTableView with LARGE dataset
- Subject: NSTableView with LARGE dataset
- From: Paul Thomas <email@hidden>
- Date: Fri, 23 Feb 2007 16:34:10 +0000
Hi,
is there a limit on how big an NSTableView can be?
I have a large data set to display and the rendering is corrupt after
a certain number of rows. As a sample, I created an app in XCode with
just a table view connected to a data source as below:
- (int)numberOfRowsInTableView:(NSTableView *)aTableView
{
return 3625392;
}
-(id)tableView:(NSTableView *)aTableView
objectValueForTableColumn:(NSTableColumn *)aTableColumn
row:(int)rowIndex
{
return [NSNumber numberWithInt: rowIndex];
}
Is this an expected problem?
pt.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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