Tagged Questions

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
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
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
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 ...
1
vote
1answer
236 views

NSOutlineView — combining multiple sources

In my app, I have an NSOutlineView that gets its data from a NSTreeController -- which in turn gets it from the Core Data model. What I would like to do now is to add group headings and maybe some ...
1
vote
1answer
176 views

Can NSOutlineView and NSTreeController handle thousands of objects?

Background Core Data app on Snow Leopard 10.6.4 with GC I've got an NSOutlineView backed by NSTreeController using bindings I'm creating tens of objects on a background NSOperation subclass, saving ...
1
vote
2answers
166 views

Proposed solution to NSTreeController displaying duplicate enitities

As many of you may know, an NSTreeController bound to an outline view can display duplicates while presenting core data entities. A temporary solution is to add 'parent == nil' to the predicates, ...
1
vote
1answer
381 views

NSOutlineView not refreshing when objects added to managed object context from NSOperations

Background Cocoa app using core data Two processes - daemon and a main UI Daemon constantly writing to a data store UI process reads from same data store Columns in NSOutlineView in UI bound to an ...
1
vote
2answers
162 views

Heterogeneous NSTreeController

I have an NSTreeController (supplying content to an NSOutlineView). I'd like the top-level objects to be of one class, and all other objects (so, children at any level) to be of another. What's the ...
1
vote
1answer
534 views

NSOutlineView, NSTreeController and willDisplayCell

I'm pretty new to Obj-C and Cocoa stuff, so forgive any stupidity. I'm using an NSOutlineView with an NSTreeController that provides an array of my own objects to it. My delegator is using the ...
0
votes
0answers
7 views

can NSTreeController setcontent be used with NSXMLDocument?

I'm trying to display the content of a simple plist (xml) file in an outlineview. Once I have the file data in either an NSXMLDocument or an NSDictionary, is it possible to just use this existing ...
0
votes
0answers
32 views

Get object corresponding to node selected in NSTreeController

Background: I have a class MyBaseNode which is a subclass of NSTreeNode: @interface MyBaseNode : NSTreeNode { ... } And also a class MyNode which is a subclass of MyBaseNode. @interface MyNode : ...
0
votes
1answer
31 views

NSTreeController: custom behavior for “canInsert” binding

I have a Cocoa app with an NSOutlineView managed by an NSTreeController. In addition there's a button for adding new elements to the outline view. I bound the button's enabled flag to the tree ...
0
votes
0answers
57 views

CoreData, SourceList and NSTreeController

Ok guys, here is my question. I would use CoreData + Source List + NSTreeController to create something similar to the source list of Finder (or iTunes if you prefer). My problem is that what I have ...
0
votes
0answers
21 views

Custom Hiearchy View— NSTreeController or Not?

I have a hierarchy of stuff I want to display (at the same time) in both outline view and a custom view. Sort of analagous to the Buck and Yacktman (Cocoa Design Patterns) example in CH. 29, but with ...
0
votes
0answers
54 views

NSTreeController, arrangedObjects — How does NSOutlineVIew Column get data from bindings?

Using XCode 4.2 with ARC. I'm trying to write a custom view for a hierachy of stuff. I'm using NSTreeController. I also have a standard outline view. My nodes have a property 'name' which is an ...
0
votes
0answers
17 views

Adding new layer on the Outline View using Core Data

I have an application that has a layout similar to the iTunes and Finder. I use Core Data and NSTreeController to set the data in the hierarchical view on the left side. I need to modify the ...
0
votes
0answers
15 views

How to observe edits for items using NSTreeController and NSOutlineView

I have an NSOutlineView populated using an NSTreeController. The tree controller manages an array of NSMutableDictionary with properties including: NSString *name, and NSArray* children. How do I get ...
0
votes
1answer
22 views

How do I get the target of Control Click in NSOutlineView

I have a NSOutlineView controlled by a NSTreeController. NSOutlineView is connected to a Contextual Menu in Interface Builder. Control Click brings up my Menu, and the row clicked on is "selected" ...
0
votes
0answers
57 views

NSOutlineView's selectionIndexPaths to NSTreeController selectionIndexPaths binding.

in my current project I've got an NSOutlineView's content bound to an NSTreeController (which is bound to CoreData Entities). So far everything works fine. But: in the moment I try binding the ...
0
votes
1answer
180 views

View Based NSOutlineView Drawing Child Views Atop Parent Views

Using NSOutlineView + NSTreeController + Core Data is resulting in odd outline view layout. As you can see in the images below, the outline view creates a space for the 'Child' when the 'Parent' is ...
0
votes
0answers
130 views

OutlineView with treeController and core data problem changing item values

I've got an NSOutlineView bound to an NSTreeController in entity mode in an persistent document with core data. I can add and delete new items. Unfortunately, if I change the caption of an ...
0
votes
1answer
67 views

How do I set TreeController's Content Object when showing a NSXMLDocument in Outline View

I would like to show a NSXMLDocument in Outline View. Thankfully apple has a document for that called "Using Tree Controllers With NSXML Objects". But one thing I did not get is that how I set ...
0
votes
1answer
112 views

NSTreeController's selectionIndexPaths updating after mouseDown is often interrupted

Problem Background: I have a NSOutlineView with every tableColumn binded programmatically to the NSTreeController's arrangedObjects so there is no need to bind selectionIndexPaths. The source of ...
0
votes
0answers
62 views

How can I configure an NSOutlineView in a master-detail interface using Cocoa Bindings only for the detail part?

In my app I have a list of contacts, instances of a Contact class saved in a Core Data model. Contacts may be active or not, so in Contact I have an attribute called isActive. The app has a ...
0
votes
0answers
193 views

Master-detail with two master groups, with NSOutlineView bound to NSTreeController

In my app I have a list of contacts, instances of a Contact class saved in a Core Data model. Contacts may be active or not, so in Contact I have an attribute called isActive. The app has a ...
0
votes
2answers
375 views

Adding a child object using NSTreeController/NSOutlineView

In my application, like many Mac applications, I have a source list. At the moment this is an NSOutlineView bound to an NSTreeController. I can add items to it pretty easily, and have even been able ...
0
votes
1answer
152 views

Placing items from a Core Data entity into an NSOutlineView programmatically?

Sorry if this seems like a silly question - I am an amateur when it comes to Objective-C and Cocoa and even less knowledgable when it comes to Core Data usage. So here's the situation: I have an ...
0
votes
1answer
296 views

How do I set the default selection for NSTreeController at startup?

The Background I've built a source list (similar to iTunes et al.) in my Cocoa app. I've got an NSOutlineView, with Value column bound to arrangedObjects.name key path of an NSTreeController. The ...
0
votes
1answer
129 views

NSTreeController how to save to file

Hi I am using an NSTreeController to control an NSOutlineView. This application loads bookmarks from file to application. As in the SourceView example in ADC: ...
0
votes
1answer
176 views

Why does the row at the bottom of my outline view get deleted when I click the remove button rather than the one that is selected?

When I select a row in my outline view (connected to a NSTreeController) and click the remove button it doesn't delete the row that I have selected but actually deletes the row at the bottom of the ...