Tagged Questions
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
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
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 ...
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 ...
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
1answer
126 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
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
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
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
295 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
2answers
243 views
Setting the NSBrowserCell image using bindings?
I've got an NSBrowser hooked up to an NSTreeController bound to an array of NSTreeNode objects. It's easy enough to get the text portion working by setting the Content and Content Value bindings to ...