OK, so I\'m having a go at building a Mac OS X app using Core Data. The basic layout is that there is a main window containing a NSTableView, which displays a brief description of all objects managed
I have a class Field. Each instance contains an NSMutableArray of subfields, which are more Field objects.
I have an NSColumnItem Selected Value bound to a relationship property (jobParent) in an entity (jobs). This is an inverse relationship to a property (projectChild) in a separate entity (projects).
I have a managed-object X with a relationship to a list of [1:N) Y objects. (X and Y objects are stored using Core Data)
based on the Tab Bar default project, I tried to build a program with 5 tabs. This part works. On tab 2 are several labels I want to change, mostly their text. I am connecting the labels to outlets l
This is my setup: In my app delegate, I register my defaults. In my preferences nib I have bound a checkbox to the shared user defaults with controller key values and model key path test.
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 wo
I have a working Core Data app and I want to display a representation for some of the Entities. I have set up an NSCollectionView with the Interface Builder \"Core Data Entity Assistant\" to setup the
i\'m making a simple document-based application in Cocoa. Each document of this app should basically manage an array of Dates and Notes, so each record is a date and a note (textview). Also each docum
I have an NSView and an NSArrayController and I\'d like to bind some values inside tha开发者_运维知识库t view to an object in the array controller\'s arrangedObjects array. How would I do this? I thou