Advertisement
Guest User

Untitled

a guest
Sep 21st, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @interface OutlineViewController : NSOutlineView <NSOutlineViewDataSource, NSOutlineViewDelegate>
  2. @end
  3.  
  4. @implementation OutlineViewController
  5. - (CGFloat)outlineView:(NSOutlineView *)outlineView heightOfRowByItem:(id)item
  6. {
  7. if (myCondition) { /* ... */ } else {
  8. // how to return default result from here
  9. // return [super outlineView:outlineView heightOfRowByItem:item];
  10. }
  11. }
  12. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement