Tagged Questions

NSOutlineView is a subclass of NSTableView that uses a row-and-column format to display hierarchical data that can be expanded and collapsed, such as directories and files in a file system. A user can expand and collapse rows, edit values, and resize and rearrange columns.

learn more… | top users | synonyms

10
votes
1answer
3k views

NSOutlineView - Auto-expand all nodes

I've got an NSOutlineView bound to an NSTreeController (if that makes a difference), and I'd like to expand every node in my -awakeFromNib(). I'd also like to programatically select the first child ...
6
votes
1answer
1k views

How do you add context senstive menu to NSOutlineView (ie right click menu)

How do you add the ability to right click on a row in an NSOutlineView so you can say delete an object or some other activity. (ie Like when you right click on a folder in the Apple Mail app) I think ...
5
votes
2answers
340 views

How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar?

I'd like to have the same behavior of special items as it's done in the Things application. I mean Logbook and Trash items in the bottom part of the Sidebar: Please advise any way to implement the ...
4
votes
2answers
194 views

NSOutlineView with transparent field editor

I'm working with a NSOutlineView located on a HUD panel. I configured it so that it doesn't draw its background. Everything looks fine until I double click to edit a cell. The field editor draws its ...
3
votes
1answer
118 views

Example for how to implement a view-based source list?

Has anybody found a clear, concise example or guide on how to implement a source list using the view-based NSOutlineView introduced in Lion? I've looked at Apple's example project, but without any ...
3
votes
1answer
398 views

NSTextField not calling delegate when inside an NSTableCellView

I have a fairly vanilla Source List (dragged out from the Object Library) in my app, with an NSTreeController as its data source. I set the NSTextField inside the DataCell to be editable, but I want ...
3
votes
2answers
565 views

Binding view-based NSOutlineView to Core Data

I'm trying to implement the new view-based OutlineView as a source list in my Mac app. I can't get values to display, though, so I made a small test app from the Core Data app template, and can't get ...
3
votes
1answer
162 views

NSOutlineView indentation issue

I'm using an NSOutlineView object to represent a file structure and am finding that it will not correctly indent any children which are expandable, though it will indent children that aren't. Here's ...
3
votes
1answer
690 views

Strange behavior using view-based NSOutline (Sourcelist)

I have a (new in Lion) view-based NSOutlineView as Sidebar SourceList in my app using CoreData + NSTreeController + Bindings + NSOutlineView and an Object as NSOutlineViewDelegate. I use these ...
3
votes
2answers
254 views

NSTextFieldCell with Multiple Lines

I need to show an NSTextFieldCell with multiple lines with different format on each line. Something like this: Line 1: Title Line 2: Description I subclassed NSTextFieldCell but I don't know how ...
3
votes
3answers
604 views

NSOutlineView: remove disclosure triangle and indent

I'm using NSOutlineView for a project, and can't seem to figure out two things: How to remove the disclosure triangle for tree nodes. Apps like iTunes seem to be able to do this: Is there some ...
3
votes
1answer
421 views

Make NSFormatter validate NSTextFieldCell continuously

In Cocoa, I have an NSOutlineView where the cells are NSTextFieldCell. The cell displays values which are strings that are formatted according to certain rules (such as floats or pairs of floats with ...
3
votes
3answers
1k views

Getting NSOutlineView rows to be editable

Does anyone here know how to make cells in NSOutlineView's editible? Im using the sampe code from apple and I cant seem to get it work at all. I am trying to set it up so that when you click twice in ...
3
votes
1answer
4k views

NSOutlineView and NSTreeController example

Please send me some links on how to use NSOutlineView with NSTreeController bindings without using core data. Thanks in Advance, BP
3
votes
2answers
2k views

NSTableView and NSOutlineView drag-and-drop

I have an NSTableView and an NSOutlineView, both with their content provided by bindings, that I'd like to have some drag-and-drop functionality: Drag rows from Table A onto a row of Outline B, ...
2
votes
0answers
19 views

How to detect drag operation on NSOutlineView (Snow Leopard)

I've a NSOutlineView used as file path drag source, it supports copy and move operations and are defined as shown below - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag { return ...
2
votes
1answer
359 views

Implementing a basic Source List using NSOutlineView and NSTableCellView

I am new to Cocoa, but am an experienced programmer (mostly C, C++, .NET and QT). I am working on implementing a Source List which is the sidebar you typically see in finder and iTunes. I am ...
2
votes
2answers
223 views

set NSOutlineView's selection programmatically (and get NSTableView's selection)

I want to set my OutlineView's selection programmatically in another class. I'm able to acces the instance of NSOutlineView by [[appDelegate outlineViewController] outlineView]. The idea behind ...
2
votes
1answer
108 views

NSOutlineView setNeedsDisplayInRect calls fail

I have an NSOutlineView that uses a custom NSCell subclass to draw an NSProgressIndicator. Each NSCell has a refreshing property that is set by the NSOutlineView delegate willDisplayCell:forItem: ...
2
votes
1answer
101 views

NSOutlineView's noteNumberOfRowsChanged isn't equivalent to reloadData

I add another Object to my NSOutlineView's NSOutlineViewDataSource and call [myOutlineView noteNumberOfRowsChanged]. If I read the documentation correctly this should get the OutlineView to realize I ...
2
votes
3answers
517 views

NSTableView & NSOutlineView editing on tab key

My app has an NSOutlineView and an NSTableView, and I'm having the same problem with both. With a row in either selected, pressing the tab key puts the first column into edit mode instead of making ...
2
votes
2answers
122 views

NSOutlineView with text-wrapping cells: heigthOfRow

I'm trying to implement an NSOutlineView with multiple-line cells. Following advice from this and other sites, I have come up with the following code in the view's delegate. - ...
2
votes
1answer
99 views

Should I use a background thread for my UI actions?

Background I've got an NSOutlineView that shows TrainingGroup entities. Each TrainingGroup represents a folder on the local machine. The NSOutlineView is bound to an NSTreeController with a fetch ...
2
votes
1answer
329 views

How to make an NSOutlineView indent multiple columns?

What would be the easiest or recommended way for making an NSOutlineView indent multiple columns? By default, it only indents the outline column; and as far as I know there is no built-in support for ...
2
votes
0answers
149 views

How to resize NSOutlineView column when scroller appears/disappears?

This ought to be very basic but after trying for an hour or so I can't figure out how to do this correctly: I have a NSOutline view with two columns, of which the right one should always be fully ...
2
votes
1answer
350 views

Animating “sliding” in NSOutlineView

I've done a fair amount of Googling, but still haven't find any proper solution for animating the expansion of NSOutlineView. I'm trying to mimic a "sliding" animation when expanding/collapsing rows. ...
2
votes
1answer
1k views

NSOutlineView with Bindings driven by Core Data

I've got an NSOutlineView acting as a source list for my application, and my data model is done with Core Data. I'd like to use bindings (if possible) to glue these things together as follows: I have ...
2
votes
1answer
148 views

Problem when NSOutlineView cells have same value

I have a Mac OS X application that uses an NSOutlineView with two columns: key and value, where you can edit the value column. I either have a NSString or a NSDictionary in a row. The code for the ...
2
votes
1answer
252 views

NSImage leaking?

So I'm trying to duplicate the SourceView example in my app. I can generate the source list perfectly, fine. I can also expand the containers, and everything is displayed fine. However, when I select ...
2
votes
2answers
2k views

How do I use NSTreeController, NSOutlineView and Core Data with an “invisible” root item?

I have a Core Data model which consists of a simple tree of a particular entity, which has two relationships, parent and children. I have an NSTreeController managing the model, with an NSOutlineView ...
2
votes
1answer
195 views

Is there a simple way to combine a text and icon in an NSCell in Cocoa?

I'm trying to create a very simple selection list widget based on NSOutlineView. However, I'm having a hard time figuring out how to display an icon and a label right next to it, which is really the ...
2
votes
1answer
557 views

Changing default font size for NSTable/NSOutlineView

I dont quite understand how to change (decrease) the font size for the text in my NSOutlineView. The default text is larger than most applications use for their font size. There is some heirachical ...
2
votes
4answers
2k views

How to select items in NSOutlineView without NSTreeController?

I'm using NSOutlineView without NSTreeController and have implemented my own datasource. What is the best way to select an item? NSOutlineView support already expandItem: and collapseItem:. And I'm ...
1
vote
0answers
24 views

NSOulineView alignment and header cell font

I have specifically three problems with NSOulineView. 1) Header Cells font: I want to reduce the font size just of the header cell. I tried using IB but without success. Unbinding the Table Cell ...
1
vote
1answer
74 views

rearranging table rows by dragging in Lion

I am having trouble using the new Lion functionality to rearrange rows in my app. I am using outlineView:pasteboardWriterForItem: to store the row indexes so that I can access them later when I ...
1
vote
2answers
157 views

Data for NSOutlineView Source List

i've got a Delegate class for a Source List. But i don't know what type the return variable of outlineView:objectValueForTableColumn:byItem: should be. At the Moment my code looks like this, all the ...
1
vote
0answers
206 views

Changing NSTableCellView's objectValue in view-based NSOutlineView does not propagate to dataSource

I use a view-based NSOutlineView to display and select hierarchically structured items for a scientific application. Each row in the outline column represents an item, signified by an item-specific ...
1
vote
1answer
54 views

NSOutlineView drag and drop: how to prevent parent being dropped on one of its children

I'm setting up drag and drop for my NSOutlineView and I want to prevent parents being dropped on one of their children. The parent and children are all of the Group entity. I understand I need to do ...
1
vote
1answer
53 views

NSOutlineView: Why is shouldEditTableColumn: called twice?

Hit enter for a row in my OutlineView, the shouldEditTableColumn method gets called twice. When I click to enter, it's called once. - (BOOL)outlineView:(NSOutlineView *)outlineView ...
1
vote
2answers
367 views

View-based NSOutlineview selection gradient

I'm still struggling with the view-based NSOutlineView in my little Cocoa application. I'm trying model my OutlineView after the finder one. When the Finder OutlineView loses focus (e.g. clicking any ...
1
vote
1answer
199 views

Model Object called in NSOutlineView DataSource Method Crashing App

I have a bewildering problem, hoping someone can assist: I have a model object, called Road. Here's the interface. @@@ @interface RoadModel : NSObject { NSString *_id; NSString *roadmapID; ...
1
vote
1answer
132 views

Adding NSProgressIndicators to an NSOutlineView subclass

I'm using a heavily modified version of the fantastic PXSourceList control to emulate other popular OS X source lists. Unfortunately I've run into some issues while attempting to add ...
1
vote
1answer
99 views

Core Animation causing partial Source List focus ring

I'm using a slightly modified ImageAndTextCell from one of Apple's tutorials in a custom NSOutlineView. For those unfamiliar with it, it's an NSTextFieldCell subclass that draws an image to the left ...
1
vote
2answers
94 views

NSOutlineView elements remain hopelessly undraggable

I have a program with a NSOutlineView (that supports single selection only) from which I'd like to be able to drag elements. These elements should either be received as text or files: for instance, ...
1
vote
2answers
320 views

Why is NSManagedObjectContext = nil after first attempt to fetch it?

I have an NSOutlineView with a custom NSOutlineViewDataSource based on the parent-child relationship or two core data entities. I haven't found a straightforward way to bind these to the view yet so ...
1
vote
3answers
214 views

Unrecognised selector sent to class

Using an example I found elsewhere that combined two arrays into an outlineview using 6 files (a delegate h/m, a parent h/m and a child h/m - 3 classes), I've ammended the project a little and ...
1
vote
0answers
151 views

Cocoa - Animating reordering of NSOutlineView

How would I go about animating the reordering of an NSOutlineView at the click of a button? High-level step-by-step instructions would be much appreciated. Thanks!
1
vote
1answer
436 views

Cocoa : Multiline NSTextFieldCell in a NSOutlineView

I am developing a Cocoa application. I have a NSOutlineView displaying custom cells ( cells inherits from NSTextFieldCell). The problem I am facing to is that the cell text is only displayed on one ...
1
vote
0answers
63 views

How do I call the group highlighting behavior used in iTunes when dragging into an outline view?

When dragging items into the left panel of iTunes a non-standard highlight is used, see image how can i use this style highlight when dragging into a specific group of section of an outline view?
1
vote
2answers
180 views

How can you get indexes of visible rows for an NSOutlineView?

How can you get a indexes of visible rows for an NSOutlineView? I need to know which level and which rows are visible. [EDIT] What I'm actually looking for is an NSOutlineView equivalent to ...

1 2 3 4