Tagged Questions
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
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 ...
0
votes
0answers
56 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
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
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
179 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
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
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
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
3answers
276 views
NSTreeController fetch predicate based on transient isRoot exceptions
My document-based Cocoa application uses a NSOutlineView/NSTreeController combo, bound to the document's Core Data store. My NSTreeController has the fetch predicate isRoot == YES. isRoot is a ...
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 ...