Re: NSTableView variable row height and noteHeightOfRowsWithIndexesChanged during live resize
Re: NSTableView variable row height and noteHeightOfRowsWithIndexesChanged during live resize
- Subject: Re: NSTableView variable row height and noteHeightOfRowsWithIndexesChanged during live resize
- From: Corbin Dunn <email@hidden>
- Date: Thu, 23 Apr 2009 15:33:53 -0700
On Apr 23, 2009, at 2:55 PM, Stuart Malin wrote:
I have an NSTableView with a single column that has a custom cell.
During a live resize, I recalculate the row height in the delegate
method -tableView:heightForRow: and return the result. However, some
rows don't grow larger. I presume I need to call the tableview's -
noteHeightOfRowsWithIndexesChanged for each row that has a height
change. Is it okay to call this from within the
tableView:heightForRow: method?
No, it is not; you'll have to redo your logic, or call it with a range
for all rows (probably the easiest thing to do).
corbin
_______________________________________________
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