Tagged Questions

on Mac OS X, NSArrayController is a bindings compatible class that manages a collection of objects

learn more… | top users | synonyms

10
votes
2answers
2k views

Why isn't there NSArrayController for the iPhone?

Why isn't there NSArrayController for the iPhone? Will there ever be an NSArrayController for the iPhone?
5
votes
3answers
394 views

What are the reasons for subclassing NSArrayController?

I am trying to improve my KVC/KVO/Cocoa-Bindings-fu and was wondering what could be the reasons to subclass the NSArrayController?
5
votes
1answer
759 views

How do I bind an iTunes style source list to an NSTableView using Core Data?

I have an iTunes style interface in my application: Source list (NSOutlineView) on the left that contains different libraries and playlists with an NSTableView on the right side of the interface ...
4
votes
2answers
652 views

Sorting a NSArrayController backed NSTableView

I have a NSArrayController and a NSTableView. They show tracks from iTunes. I can sort the list by clicking in the header. Is there a way to set up a default sort descriptor for the table view so it ...
3
votes
1answer
256 views

Objective-C undo manager questions

I'm reading a book on Objective-c and learning about the undo manager. The concept seems very simple but the provided example seems overly complex. Basically, I have a table view connected to an ...
3
votes
1answer
108 views

Modeling user-orderable lists with Core Data / Bindings

I'm working through a learning project around Core Data on OS X. I have an entity (Foo) in the data store, and in the UI, I use an NSArrayController with bindings to put some (name) field of the Foo ...
3
votes
1answer
1k views

How to make Deep Copy of NSManagedObject in Core Data

I am trying to make a duplicate of an existing NSManagedObject and related sub-objects in Core Data. I can't seem to find an easy way to do this. I have an NSArrayController that is populated from a ...
3
votes
1answer
2k views

Key Value Observing with an NSArray

I've looked on SO for examples of using Key Value Observing with an NSArray (or NSMutableArray) and apparently you need to use an NSArrayController (which unlike KVO I'm not familiar with), but I ...
3
votes
2answers
468 views

NSArrayController not working with NSMutableDictionary for NSTableView

I am trying to display content in NSTableView using NSMutableArrayController of NSMutableDictionary records. I followed steps written below: In application delegate class, I created an ...
3
votes
2answers
495 views

Subclassing NSArrayController in order to limit size of arrangedObjects

I'm trying to limit the number of objects in an array controller, but I still want to be able to access the full array, if necessary. A simple solution I came up with was to subclass ...
3
votes
2answers
744 views

Exposing model object using bindings in custom NSCell of NSTableView

I am struggling trying to perform what I would think would be a relatively common task. I have an NSTableView that is bound to it's array via an NSArrayController. The array controller has it's ...
3
votes
1answer
742 views

NSManagedObjectContext and NSArrayController reset/refresh problem

I'm having trouble getting my UI to reflect external changes (made by another process) to an sqlite data store. I have a fairly standard core data based NSArrayController / table view. My app gets ...
3
votes
1answer
524 views

NSCollectionView draws nothing

I'm trying to set up an NSCollectionView (I have done this successfully in the past, but for some reason it fails this time). I have a model class called "TestModel", and it has an NSString property ...
3
votes
1answer
959 views

Cocoa binding to a particular item in an array controller

Is it possible using NSArrayController to bind a NSTextField's value to a particular item in the array? In particular, I want to bind to a property on the first item in the array, and show nothing if ...
2
votes
1answer
40 views

Get notified by the time a new object is added to a NSArrayController

I want to execute a method (or selector) every time a new object has been added to my array controller. I guess it can be somehow done with key-value observing, but I don't exactly know how. Can ...
2
votes
1answer
45 views

Changing visibility of NSPopUpButton's items based on keypress

I've got an application here that needs to read in a bunch of data from an external file and display it as a NSPopUpButton in a Cocoa user interface. The catch here is that the data that is being read ...
2
votes
1answer
112 views

How to show button cell (check box) title in table view, using bindings

I am trying a simple application where I have a mutable array of mutable dictionaries, such as - NSMutableDictionary *sample6 = [[NSMutableDictionary alloc] ...
2
votes
1answer
54 views

How to prevent retain cycles caused by binding to self

I have an application where I need to access model data from my subviews. I've been using bindings to pass data across views; however, the bindings to self seem to be causing retain cycles (dealloc ...
2
votes
1answer
73 views

Moving array controller initialization from nib to code breaks table view bindings

My window controller subclass is the nib's owner. I instantiate my array controller, in code, in my document subclass. Both the document and window controller use it in code. I bind table columns ...
2
votes
1answer
48 views

NSArrayController for polymorphic class

I have the following (stripped down) class interfaces: @interface ScriptEvent : NSObject { ... } @interface SingleLine : ScriptEvent { NSString *line; } @interface MultiLine : ScriptEvent { ...
2
votes
1answer
183 views

How to Bind Content Set of NSArrayController to More than One NSArrayController Selection?

I am new to Objective-C, and I love it so far. However, I seem to be running in circles. I am trying to do as much as possible without writing code. Is it possible to effectively bind the Content Set ...
2
votes
1answer
198 views

NSTableView's row number

I can't find a way to make a row to show the displayed row's number. In fact I have an NSArrayController and an NSTableView whose columns are bound to the NSArrayController. Now I have to show the ...
2
votes
1answer
75 views

NSArrayControllers and heterogeneous arrays of Core Data objects

I'm trying to create a Mac OS Core Data application that has an array of parent objects (called Levels) each of which contains a collection of child objects (called Blocks) via a one-to-many ...
2
votes
1answer
317 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
137 views

Problem retrieving NSCell data via [NSTableColumn dataCellForRow]

I am trying to retrieve a specific NSCell data from an NSTableView through [NSTableColumn dataCellForRow] but every time it shows different value for same row and same column. The data source remains ...
2
votes
1answer
280 views

How do I share an NSArrayController between two nib files?

I have an array of images, and two nib files. One nib file has a window that displays the images in an NSTableView. The other nib has a window that draws the array of images into an NSView, and also ...
2
votes
1answer
211 views

Cocoa @sum array operator too slow - alternatives?

I've got a text field value bound to a key path that uses @sum. When the array controller is filtered, the text field updates properly, but extremely slowly, lagging the UI or outright beachballing ...
2
votes
2answers
709 views

Binding selection across multiple view controllers in a single window interface

I am having an issue wrapping my head around how to hook up a few NSArrayControllers across two view controllers. I want to sync the selection in the source list table view to update the values in ...
2
votes
2answers
208 views

Binding an array controller to a 'derived' attribute - KVO problem?

Sorry for the clumsy title. Imagine a simple UI to display the first names of a person's children... As I initially only had one Person, I created an array controller and bound it to ...
2
votes
2answers
54 views

How expensive is it to retrieve a model object from an nsarraycontroller?

I've a window with a table. The table lists several model objects by name. Those model objects back a window and that window's components all depend on the model objects for their values. Some tables ...
2
votes
2answers
787 views

How can I create a master-detail interface with Core Data and an abstract entity?

Apple has a nice little tutorial for making a simple master-detail interface. Interface Builder will even automatically generate one for you from a Core Data entity. However, I'm trying to do ...
1
vote
1answer
74 views

Bind a NSSet representing a to-many relationship to the selection of a NSArrayController

Here's the scenario. There are two CoreData model objects, A and B, and the relationship between them is that A has-many B, represented by the property setOfBs. I'd like to display two tables, one ...
1
vote
1answer
44 views

Setting and maintaining the first SortDescriptor for an NSTableView

I have an NSTableView with columns bound to an NSArrayController. The table view shows a list of email messages: Flag if unread Subject Attachment size The user can click on the Attachment Size ...
1
vote
1answer
55 views

setFilterPredicate on a NSArrayController doesn't work if it's in “Auto Rearrange Content”

I have a classic CoreData application, displaying it's data in NSTableView with Binding (all done with XCode 4.2). Working fine until I decide yesterday to check, in Attributes Inspector, the 'Auto ...
1
vote
1answer
59 views

Master-detail using bindings with TWO NSTableViews

I have a list of objects displayed in an NSTableView (bound to an NSArrayController). When you select an object in that list I want to show a detail view in a second NSTableView. My object has an ...
1
vote
1answer
90 views

Core Data traversing entities with an NSArrayController content set?

I have 3 entities in a Core Data application: Projeto <-->> Servico <-->> Sessao (the relationships are named as usual). Projeto.servico (to many Projeto --> Servico) Servico.projeto ...
1
vote
1answer
98 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 ...
1
vote
1answer
81 views

Is it bad practice to use NSArrayControllers programmatically?

I'm wondering if there is any reason to not use NSArrayController programmatically. All documentation and tutorials are geared towards having NSArrayControllers implemented in IB. Is there any ...
1
vote
1answer
79 views

How to bind a NSMutableArray to NSArrayController's selection?

I have NSMutableArray (arr1), and NSArrayController for that arr1. I'd like to have another NSMutableArray's content to be the selection of the NSArrayController.
1
vote
0answers
65 views

Multiple filtered lists per NSArrayController

What I need to do is simple, Say I have a list of student domain objects @implementation Student : CPObject { CPString name @accessors; BOOL isLate @accessors; BOOL isMale @accessors: } ...
1
vote
1answer
49 views

Editing NSTableView and storing input as NSNumber

Scenario: A cell-based NSTableView has columns bound to keys of dictionaries from an array controller. When the user double clicks a cell, it is edited in the normal way -- all with the default ...
1
vote
1answer
217 views

Cannot remove an observer … for the key path “…” from … because it is not registered as an observer

I have a Core Data model with two entities: A and B. A has a relation to one or more Bs. B has a property bValue. I create many instances of a class and some of them invoke a notification. This ...
1
vote
0answers
40 views

and multiple selectedObjects in NSArrayController

When ever there is more than one object selected in my TableView, [NSTableView clickedColumn] always returns a negative (non-valid) int. Is there a way to get the clickedColumn for this situation?
1
vote
0answers
43 views

How to bind managedContextObject to an array controller

I have two xib's, in each xib i have array controllers.Now i want to bind managedObjectContext to arraycontroller in another/ 2nd xib which i have created explicitly. When i run the app am getting an ...
1
vote
1answer
210 views

CoreData NSArrayController addObject: Confusion

I am parsing an *.xml document that has two sections. Section One has summary data and Section Two has detailed data. I have two Data Entities who have a one to many relationship (one Summary Data ...
1
vote
1answer
179 views

arrayController “valueForUndefinedKey”: why it gets istantiated immediately?

My application has 2 windows, both of them are displaying NSScrollView objects managed by a controller. Basically the first has the data, the second has a proper aggregation of the data. Both are ...
1
vote
0answers
99 views

Cocoa binding and core data selecting from existing objects for a to-many relation

I have a data model that includes a Question and an Answer entity. The Question has a to-many relationship to Answers named choices and a to-one relationship called correctAnswer. Each question should ...
1
vote
0answers
98 views

ColorWell for Colored “Category”

I have an NSTextField, an NSTableView with a column "category", an NSColorWell, and a custom array controller. The NSTextField and the column "category" from the NSTextField are bound to the array ...
1
vote
2answers
29 views

Cocoa - Bound Array is empty when trying to write

I am writing a Master-Detail program in XCode, and want to add the ability to save all the data the user has put in. Currently I have an assignmentArray (NSMutableArray) in my controller object that ...
1
vote
0answers
66 views

How do you access an outlet in a collectionitem?

I have an NSCollectionView which is populated by collection items. An array controller is used to add the items to the view. Each item has two outlets, an imageview and textview (not field), that the ...

1 2 3 4 5