Parmanoir

Debugging with Activity Monitor

Quirky workaround of the week !

To draw a custom header in a table view, derive from NSTableHeaderCell and write your drawing code in highlight:withFrame:inView:. This works fine until you disable column selection : highlight:withFrame:inView: is never called, although the header cell obviously looks highlighted. To understand why, we can use … Activity Monitor ! As strange as it sounds, double click your process listing to get a sample button. Instead of launching Shark and getting a trace from everything, we can sample for one moment while clicking around to highlight those table header cells. Behold :

// Column selection enabled
  1 -[NSTableHeaderView drawRect:]
	1 -[NSTableHeaderView _drawColumnHeaderWithIndexes:]
	  1 -[NSTableHeaderView _drawHeaderOfColumn:]
		1 -[NSTableHeaderCell highlight:withFrame:inView:]
		  1 -[NSTableHeaderCell _drawThemeContents:highlighted:inView:]
			1 -[NSTableHeaderCell drawInteriorWithFrame:inView:]

// Column selection disabled
	3 -[NSTableHeaderView drawRect:]
	  3 -[NSTableHeaderView _drawColumnHeaderWithIndexes:]
		3 -[NSTableHeaderView _drawHeaderOfColumn:]
		  3 -[NSTableHeaderView _drawHeaderCell:withFrame:withStateFromColumn:]
			3 -[NSTableHeaderCell drawWithFrame:inView:]
			  3 -[NSTableHeaderCell _drawThemeContents:highlighted:inView:]
				3 -[NSTableHeaderCell _drawBezelWithFrame:highlighted:inView:]

Et voilà ! When column selection is disabled, highlight:withFrame:inView: is never called. _drawBezelWithFrame:highlighted:inView: is called instead. Hey, there's even some code using that very method ! Using it to draw the highlighted cell does work.

This is not foolproof as sampling just peeks at calls from time to time, not ALL calls : you might need a few runs to catch the cell redrawing. Still, Activity Monitor provides an easy way to target sampling : click on what you want sampled while the sample is being taken. It also gives quasi realtime results without needing to start Shark or wait for application termination.


Follow me on Twitter
Planet Cocoa
Cocoa.fr

2011 02 22Distance field
2010 07 202Binding through NSApp
2010 05 122Forwarding invocations
2010 02 272Core Image black fringes
2010 02 21Quickest Way to Shell
2010 02 08Who's calling ?
2009 09 2138 ways to use Blocks in Snow Leopard
2009 08 182Bracket Mess
2009 08 124Taming JavascriptCore within and without WebView
2009 04 15Debugging with Activity Monitor
2009 03 25How Core Image Color Tracking works
2009 03 1510Custom NSThemeFrame
2009 03 10Which framework is running ?
2009 03 074CoreUI can paint pretty big
2009 02 18Localization with functions
2009 01 30Did you forget to nest alloc and init?
2009 01 16JSCocoa on the iPhone
2009 01 11Mixing WebView and JavascriptCore
2009 01 09Badge overflow
2009 01 09Find your Garbage Collection leaks with Instruments

Powered by MediaWiki