Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
597 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
39 views

what is the best of showing a NSDictionary of NSArrays?

I have A NSDictionary that each key refers to an NSArray object, I want to show the contents on a Cocoa APP on mac osx 10.5, What is the best solution to this ? NSTreecontroller?
2
votes
1answer
36 views

Pointer to NSTreeController newly created item

Does anybody know of a good workaround or hack to get a pointer to the newly created node from an NSTreeController add: or addChild: method?
2
votes
0answers
192 views

How to bind NSTreeController's Children to Core Data ordered to-many-relationship?

Apple introduced ordered to-many-relationships in Core Data in Lion. I created an entity named TreeNode with an 1:1-object-relation, a 1:1-parent-relation and an ordered to-many-relationship children. ...
2
votes
1answer
159 views

NSTreeController with two different core data NSManagedObject entities

I am porting my iOS app to the Mac, and want to set up an NSTreeController to manage a hierarchy of entities. There are two distinct NSManagedObject types in this hierarchy, Group and Item, which have ...
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
2answers
195 views

NSTreeController add and addChild methods

GOTO UPDATE I have a NSTreeController controller that binded (Content Object) to content (NSTreeNode *) of my application delegate. Also I have NSOutlineView in my window that binded to my ...
1
vote
1answer
84 views

How can I get all childs, grandchilds and grandgrandchilds of an selected NSTreeController Object

i have this simplified Model: http://i.imgur.com/EAug3.png I have these Elements ordered in an NSOutlineView and Controlled by an NSTreeController. So I created some dummy data: Folder1 |___ ...
1
vote
1answer
235 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
165 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
380 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
532 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
1answer
11 views

Given model object, how to find index path in NSTreeController?

Given model objects that NSTreeController represents, how do you find their index paths in the tree and subsequently select them? This seems to be a blindingly obvious problem, but I can't seem to ...
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
11 views

NSTreeController add new/select/editable object problems

I've got a NSOutlineView backed up NSTreeController which is getting data from an NSManagedObjectContext and everything works perfect except inserting new objects. I want to insert a new object, then ...
0
votes
0answers
28 views

How does NSTreeController implement its add and addChild methods?

I have a NSTreeController in entity mode managing an entity called TreeNode with a to-many relationship called children. I have created an NSManagedObject subclass for TreeNode as follows #import ...
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
32 views

What does AlwaysUsesMultipleValuesMarker do in NSTreeController?

According to Apple's documentation, setAlwaysUsesMultipleValuesMarker: Sets whether the receiver always returns the multiple values marker when multiple objects are selected, even if they have ...
0
votes
1answer
30 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
54 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
1answer
151 views

Understanding and Reproducing the KVC Hillegass Way to Insert/Remove Objects in/from Controllers

In Aaron Hillegass' Cocoa Programming for Mac OS X, the Raiseman application connects a button in Interface Builder (IB) to an NSArrayController with sent action -remove:. In the MyDocument class he ...
0
votes
0answers
19 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
52 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
2answers
60 views

NSTreeNode mutableChildNodes not working as it should?

I'm totally baffled why this is not working. I'm trying to insert a new NSTreeNode into a mutable array of child nodes. Here's the code: NSTreeNode *newNode = [[NSTreeNode alloc] init]; ...
0
votes
0answers
16 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
1answer
125 views

Cocoa - Displaying Nested Arrays in a Table View

I have a tree controller bound to an array, called "content". "content" is an array of model objects, called "Car". Each "Car" contains an NSString called "carName" and an NSMutableArray called ...
0
votes
1answer
64 views

What exactly is an NSTreeController's “arrangedObjects”?

I'm trying to bind an NSTreeController's "arrangedObjects" to a custom view's "managedContent" (so that it can show a custom outline, for instance). In the setter... - ...
0
votes
0answers
62 views

How to use NSTreeController with models containing different childrenKeyPath

Problem: I need to use NSTreeController with some models that have different children key paths. At first, I tried adding a children property to my models like this: @interface FirstModel : ...
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
21 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
56 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
70 views

NSTreeController does not respond to reloadData

I have a NSTreeController with bindings to a class. NSOutlineView dirTree binds to the NSTreeController In particular Outline View Content binds to arrangedObjects This appears to work well, but I ...
0
votes
1answer
68 views

Filtering a NSTreeController with NSSearchField ?

This question seemed to be asked before but wasn't got answered. So is it possible to filter a NSTreeController with NSSearchField ?If yes, how then ? Thanks!
0
votes
1answer
178 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
66 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
111 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
2answers
66 views

Is there no way to use IB and the relationship of two entities to populate an OutlineView?

I have touched on this question in others before but after writing an answer to a previous question there got me wondering why this isn't possible - or am I missing the fact that it might be? Given ...
0
votes
1answer
133 views

Correct method to bind an entity as children of an NSTreeController

Am I correct in my understanding of how to populate an NSOutlineview with an NSTreeController who is bound to two seperate entities that have a relationship between them: My NSTreeController has a ...
0
votes
1answer
163 views

Editable OutlineView with Cocoa Bindings

How do you bind the NSOutlineView (or NSTableView) so that the items can be editable? I know that there's the editable field for it but I'm not sure how to use it so any help for it would be nice. I ...
0
votes
0answers
156 views

How to remove all elements from NSTreeController with NSOutlineController

I am using NSTreeController with NSOutlineController to display contents in 1parent-1child hierarchy. My structure is like this - parent - child - parent - child Now when user press a refresh ...
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
192 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
1answer
104 views

NSTreeController get added child

When NSTreeController -(void)addChild:(id)sender is called, is there a way to get the NSManagedEntity that was created? The documentation mentions that the result of this method is deferred to the ...
0
votes
1answer
103 views

How do you store child NSTableView settings for each parent item?

What is the best way to store an NSTableView's settings (ideally leveraging its autosave capability) for each item in its parent NSTreeController? I'm basically looking to reproduce the way iTunes ...
0
votes
2answers
374 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 ...

1 2