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
44 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
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 ...
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
85 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
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
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
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
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
2answers
61 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
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
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
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
1answer
134 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
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
188 views

Bind to NSTreeController selectionIndexPaths

I want to bind to a NSTreeController's selectionIndexPaths programatically by doing the following (so that I can get a string a selection and display in a text view) [activePDFView bind:@"name" ...
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 ...