Questions tagged [nsbrowser]

NSBrowser is a Cocoa control that breaks down items hierarchically.

NSBrowseris a Cocoa Control () that provides a user interface for displaying and selecting items from a list of data or from hierarchically organized lists of data, such as directory paths. When working with a hierarchy of data, the levels are displayed in columns, which are indexed from left to right.

A good example of an NSBrowser control in action is the column view of the OS X Finder ().

References:

33 questions
0
votes
1 answer

NSBrowser reuses cell rather than creating new one

I'm trying to create a UI element using NSBrowser, but for some reason the browser creates a singleton instance of the custom cell class that I specify, rather than creating new cell instance for each cell in the browser. In particular, here's the…
Tony
  • 36,591
  • 10
  • 48
  • 83
0
votes
1 answer

How to highlight a row in NSBrowser?

I tried to highlight the rows in a NSBrowser using selectRowIndexes of the NSBrowser,but it does not highlight the rows.In 'NSTableView`rows can be highlighted using - [NSTableView selectRowIndexes:byExendingSelection:] -…
Ram
  • 1,872
  • 5
  • 31
  • 54
0
votes
1 answer

Dragging from NSBrowser and use bindings?

I've implemented a browser that shares NSTreeController with NSOutlineView so I can easily switch between them and keep the states in sync. Implementing drag support for NSOutlineView is simple, but it appears that NSBrowser cannot support dragging…
1 2
3