site_archiver@lists.apple.com Delivered-To: cocoa-dev@lists.apple.com On Dec 31, 2006, at 12:17 AM, Ferhat Ayaz wrote: - (float)tableView:(NSTableView *)tableView heightOfRow:(int)row; - Scott _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) 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: http://lists.apple.com/mailman/options/cocoa-dev/site_archiver%40lists.apple... Can NSTableView assign row height for each row depending on line count for the entity field individually? It won't do it automatically, but you could do it in the delegate by implementing: Inside that method you would use the NSArrayController's - arrangedObjects array and get the item at the index of 'row'. If has two lines, you can return double the normal line height (maybe 36.0, for example). This only works in 10.4 and later. If you need it to work on an earlier version there's a third party class out there somewhere that does something similar (though I'm not sure it's still maintained). This email sent to site_archiver@lists.apple.com