0
votes
1answer
81 views

Bind NSTableColumn to NSArrayController programmatically

How can i bind a NSTableViewColumn to an NSArrayController programmatically? i have a table with 2 columns that are already bound to the array controller. but i am adding new columns at Runtime, and ...
2
votes
1answer
164 views

bind NSTableViewColumn programmatically

how can I programmatically bind a NSTableViewColumn to a NSArray.arrangedObjects key? I know how to do it in IB but was not able to find how its done programmatically. The code is adding new columns ...
0
votes
0answers
46 views

Binding works on NSPopUpButton but fails on NSTableView

So, I have a subclass of NSArrayController, "InstructorArrayController". A pointer to this is "instructorController", a member of my NSWindowController subclass, "ConfigEditorController". In my ...
0
votes
2answers
109 views

How to reordering rows in NSTableView with NSArrayController

i've got NSArrayController which gives my NSTableView object data from array _files. The problem is i want to reorder rows by dragging. How can i do this correclty with NSArrayController? Thank you ...
0
votes
1answer
98 views

Auto-complete on NSComboBoxCell via Binding in Objective-c

I don't know whether I have set this up incorrectly or not, but what I have done makes sense to me. I have an NSTableView with two columns in it - a properties column on the left and a values column ...
0
votes
0answers
40 views

Core Data Relationship bindings

I have two Core Data entities, say "Mother" and "Child". They have the inverse relationship Mother <--->> Child I have two NSTableViews (with array controllers) to list these entities. I have a ...
-1
votes
1answer
171 views

My first Cocoa master-detail application: Binding difficulties

I'm writing my first master detail view in Cocoa. My data model is really simple: just an NSMutableArray that contains instances of a single class having a few NSStrings properties. Here's what I've ...
1
vote
2answers
455 views

How to populate NSPopupButton from CoreData in View Based NSTableView

I am using view based NSTableViews that is populated using bindings and array controllers with core data. Everything works great--cells with text and buttons and cells with image and text--I can edit ...
0
votes
2answers
415 views

Using bindings to implement NSTableView drag'n'drop rearranging?

As something of an amateur Obj-C/Cocoa developer, I've recently been wrestling with enabling drag and drop operations in the NSTableViews of my software. After becoming frustrated with it, something ...
0
votes
1answer
223 views

Getting object info in willDisplayCell when NSTableView is using bindings

I have a table that's using bindings to get table data. I'm also using willDisplayCell to customize the specific cell when it's being displayed. My question is, how do I get the value of the cell ...
2
votes
1answer
917 views

NSTableView backed by NSArrayController: why does setContent: work while IB doesn't?

I am trying to implement pretty much the simplest case of binding a NSTableView to a NSArrayController, so that the NSTableView is backed by an NSArray. Here is the setup: I have an ...
0
votes
1answer
1k views

Good tutorial for NSTableView and bindings [closed]

I am trying to write simple Cocoa app for Mac OS X. App should have NSMutableArray that displayed in NSTableView. I googled very much and read some tutorials, for example I tried to do like in ...
2
votes
1answer
766 views

NSTableView bindings how to add a row

I'm working on a application with the this interface (sorry the language is Dutch): http://www.flickr.com/photos/pluueer/5756159100/ The Add function (incl. the four NSTextFields) under the ...
2
votes
1answer
493 views

How do I bind an NSMenuItem to an NSArrayController

How do I bind the enabled state of an NSMenuItem to an NSArrayController's selection? I've tried binding the item's enabled state to the controller's selectedObjects or selectedIndexes and in neither ...
2
votes
1answer
2k views

How to bind the selection of the NSTableView to the NSArrayController

I just want to be able to use the the methods of the nsarraycontroller called remove: and add:
1
vote
1answer
450 views

CoreData-bound NSTableView loses input focus when items change, but only if sorted

I have an NSTableView in a dialogue box which is bound to a collection of CoreData model instances via an NSArrayController in 'Entity Name' mode. The table displays the names of the array of managed ...
2
votes
1answer
824 views

Cocoa bindings to display NSDictionary keys in NSTableView

I currently have a NSArrayController whose content property is (programmatically) set to an NSMutableDictionary and my UI has a single NSTableView. The information that the NSMutableDictionary ...
1
vote
2answers
493 views

How to sort filenames correctly like Finder in objective-c

I am binding NStableView with NSMutableArray contiaining filenames and other file details. Simple biniding and sorting with compare: is not properly sorting file names like finder. Please let me know ...
0
votes
1answer
167 views

Valueurl Binding On Large Arrays Causes Sluggish User Interface

I have a large data set (some 3500 objects) that returns from a remote server via HTTP. Currently the data is being presented in an NSCollectionView. One aspect of the data is a path pack to the ...
0
votes
1answer
1k views

Problem getting selected row index in NSTableView with filter predicate

I'm not sure I'm phrasing this properly, but basically I do this in my main app delegate: Application *app = [[Application alloc] initWithApplication:fullPath] The Application class has an ...