Tagged Questions

0
votes
1answer
152 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
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
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
1answer
471 views

NSArrayController “Content set” bound to NSTreeController issue

I have an NSOutlineView bound to a NSTreeController and a CoreData Datamodel. NSOutlineView displays his data properly. A NSTableView's cell values bound to a NSArrayController, displaying data ...
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 ...