on Mac OS X, NSArrayController is a bindings compatible class that manages a collection of objects
0
votes
0answers
23 views
Lazy Fetching & Maintaining a sorted NSArrayController
I've got a sample project at
https://github.com/ericgorr/LazyFetching
The setup is pretty straightforward. In my CoreData model, I have two entities:
Shelf which has a name property and a to-many ...
0
votes
0answers
14 views
Trouble setting up arrayController with NSTableView and Core Data
I am trying to set up multiple tables in a single window along with a core data model with related entities. Some of which have dictionaries and arrays as attributes. I have turned to manually ...
0
votes
1answer
19 views
Binding Cocoa NSComboBox value to object
Assuming I have an NSObject subclass representing a country, e.g.
@interface CountryInfo : NSObject
@property (nonatomic, retain) NSString *countryName;
My model contains an NSMutableArray of ...
0
votes
1answer
45 views
Core Data: How to update an NSArrayController immediately after adding an NSManagedObject?
I am adding an instance in core data. The entity is represented by an NSArrayController. I would like to access the newly added instance through the controller.
A "Skill" instance is added and then I ...
2
votes
0answers
42 views
Editable table view bound to NSArrayController bound to NSUserDefaultsController
I have a simple model Foo that represents a user preference and encapsulates an NSString and an NSNumber. I want to store an array of Foo’s in user defaults so that they persist between launches of ...
0
votes
0answers
32 views
An NSArrayController changes its selection : what is the best way to catch this event?
One can put an observer on the selectedIndex method of NSArrayController. This method has some drawbacks I think :
what will happen when the arrangedObjects is rearranged ? I admit this is not a ...
0
votes
1answer
63 views
Controlling iOS UITableView
I've some experiences with creating an OS X app handling multiple user input with an array controller. The NSArrayController takes care of showing and updating an NSTableViews content. Adding, ...
0
votes
0answers
19 views
NSTableView NSArrayController NSButton key-equivalent FirstResponder coordination
I have an NSWindow with numerous NSTableViews that are bound to their own NSArrayControllers. Each of these has a set of add and remove buttons to deal with providing new data. I also set up identical ...
0
votes
1answer
25 views
Cocoa Bindings error
Trying to wrap my head around cocoa bindings can't determine the reason for this error
I Have a simple app, in which, the app delegate passes the Managedobjectcontext to Window Controller, which ...
0
votes
0answers
26 views
nsarrycontroller nsobjectcontroller bind to contentset arrangedobjects
Given the situation,
There is a 1-many relationship, of descriptions per item. Both 'Description' and 'Item' are NSManagedObjects set up via a Datamodel.
In InterfaceBuilder
NSArrayController is ...
0
votes
1answer
63 views
Array Controller not updating Table View until “Add” button is pressed
I'm new to Cocoa and Objective-C, so I'm following the Lynda courses and learning a lot. Thing is, I've encountered a problem that I cannot figure out, even though I seem to be doing it exactly the ...
1
vote
0answers
355 views
KVO: +keyPathsForValuesAffecting<Key> doesn't work with (subclass of) NSObjectController
I have a KVO-able class (call it Observee), which affectedValue dynamic property is affected by affectingValue property. The dependency between the properties is defined by implementing ...
1
vote
0answers
50 views
Using an NSSet for backing store of NSArrayController
in the NSArrayController doc it specifies:
NSArrayController is a bindings compatible class that manages a
collection of objects. Typically the collection is an array, however,
if the ...
-3
votes
3answers
78 views
Using Core Data in code - Objective-C/Cocoa
I have Core Data entity named Event in my xcdatamodeld with 2 attributes : title and date. I have also an arrayController set to Entity mode with the Event entity (done with interface builder). I want ...
0
votes
1answer
22 views
is concurrently enumerating managed object in core data thread-safe
I need to update a value for each arranged object in Core Data, and I am currently using a loop. But I want to know if the following code is thread-safe or not, and why.
ManagedObjectContext is not ...
0
votes
1answer
35 views
Using Core Data with a non-document based app - Cocoa
I have worked with Core Data using document based apps. But know, I'm trying to build an app similar the Notes app on the Mac OS X. So I've created a non-document based app with a Data Model. I binded ...
0
votes
3answers
111 views
Add an object to an NSArrayController and have it save into the Entity
I have an NSArrayController that is connected to my Entity in Core Data. I have an IBOutlet attached to the NSArrayController so that I can add objects from my Delegate.
I am trying to add an Object ...
0
votes
1answer
94 views
NSArrayController+cocoa binding + core data: get the selected row at application Launching
I'm using cocoa-binding, NSArrayController and core data.
Just after Launching, the application have to get the first item, i try this in applicationDidFinishLaunching:
1. Entity *ent = ...
0
votes
1answer
47 views
Scroll NSTableView to selection
OK, this is my situation :
I have an NSMutableArray bound to an NSTableView, via an NSArrayController.
I'm manipulating the table view's selection (trigger by keyboard), using NSArrayController's ...
0
votes
0answers
42 views
restrict editable content in NSTableView-cell
I managed to create a NSPopUpButton where the user can choose a value from a defined (and restricted) selection.
this input is send to an NSTableView-cell (row) via NSArrayController and KVC ...
0
votes
1answer
52 views
how to sort a view-based tableview
I can't manage to sort a view-based tableview. I use an arrayController that control an entity of core data.
I tried to select a column and in the attribute inspector I used as a sort key the ...
0
votes
0answers
102 views
Create and XML File in Xcode cocoa Application?
I grab a XML file from server and Parse it with the NSXMLParser and display it in a NSTableView. From there, i can add a row to the tableview. I am guessing the added information is added to the ...
0
votes
1answer
60 views
Persist the content and order of an array controller in cocoa
I have a Mac OS application that uses core data to persist its objects to disk, backed by sqlite.
I have a tableView where all the NSManagedObject subclasses can be inspected. This is bound to an ...
2
votes
1answer
108 views
Binding an Ordered Relationship with an NSArrayController
tl;dr: How does one bind an NSArrayController's content to the entities in an ordered to-many relationship?
I have an unordered to-many relationship in my Core Data model, and an NSArrayController ...
1
vote
2answers
125 views
Binding BOOL value to NSArrayController
I have a tableview bound with array controller.There are two columns in table view,one is string and another one is BOOL.I am getting string values in tableview.For displaying BOOL values in ...
1
vote
1answer
77 views
How to clear a NSTableView's data source
I am trying to make a method in which the data source for my NATableView is cleared, but I cannot figure out how to do this anywhere.
Here is the code I am using to send an array called final to my ...
0
votes
0answers
20 views
NSArrayController insert lead to exception
I have a subclass of NSManagedObject called RDFSLocalResource.
In my MacOS 10.8 application i setup a NSArrayController to manage a list of this resources which in general works.
Now i refactor at ...
1
vote
1answer
186 views
Binding a NSArrayController to a NSPopupButtonn & NSTextField
What I want to accomplish seems like it should be fairly straightforward. I have placed a sample project here.
I have a NSArrayController filled with an array of NSDictionaries.
[[self controller] ...
1
vote
1answer
45 views
get list of checked checkboxes through arraycontroller
i have an arraycontroller bound to the tableview. i need to return the number of checked checkoxes in the table. the arraycontroller is filled with nsmutabledictionaries. this is the code i have so ...
2
votes
1answer
54 views
strike through a selected row in NSTableView
I am new to mac app.In my application i have booked history tableview.when the user click on "withdraw" button,I want to strike through the selected row of the tableview.And I am getting tableview ...
0
votes
1answer
100 views
NSArrayController addObject/removeObject changes reference counts differently
I assumed that NSArrayController's addObject and removeObject would work similarly to analogues in NSMutableArray.
However, it looks like addObject increases the refcount on its target object by 3, ...
0
votes
1answer
54 views
Adding an object to a binded NSTableView - Core Data application
I have an app that uses core data. The model of which has 3 Entities, all connected by 1-many relationships as so:
|E1|<-->>|E2|<-->>|E3|
My UI is essentially a 3-way vertical split pane, each ...
0
votes
0answers
64 views
Binding Array Controller's managedObjectContext to File Owner's managedObjectContext
I'm creating an OS X app that will use an Array Controller set to an Entity that I created. So I've set the mode to Entity, wrote the name of the Entity and checked Prepares content (as I always did). ...
1
vote
1answer
41 views
setting Array in model-class from NSArrayController
How do I set the array in my model-class ValueItem with the content of an NSArrayControllerin my AppDelegate class:
@interface AppDelegate : NSObject <NSApplicationDelegate>
{
ValueItem ...
1
vote
2answers
197 views
NSArrayController in entity-mode not updating after NSTableView with content-binding has been edited
I have an NSArrayController configured with mode 'Entity' that contains Core-Data-Entities of the type 'Person' and 'Prepares Content' selected. All other properties are the default-ones. As expected, ...
0
votes
0answers
95 views
Add NSButton to Array and NSTableView
I am trying to add a Checkbox to my NSTableView.
The arraycontroller lives in the App Delegate. And is being populated by this method. I know I should add [self addSubview:cb]; but I don't know how ...
1
vote
2answers
60 views
Iterate through NSArrayController in specific order
I need to iterate through an NSArrayController in a coredata model by a specific order.
Lets say that my model has these columns:
animal (string)
name (string)
age (int)
and I would like to ...
0
votes
1answer
33 views
NSArrayController reallocating array?
I have an NSCollectionView whose content is bound to an NSArrayController's arrangedObjects. When I call addObject: on the array controller, it seems to reallocate the underlying array - I can observe ...
0
votes
1answer
107 views
NSTextField does not update calculated property using Core Data bindings
New to SO; my first question:
Re: Core Data, document based app using bindings:
I have an NSTableView bound to an NSArrayController, bound to an entity, LineItem, with several columns bound to the ...
0
votes
0answers
30 views
How to make NSArrayController#rearrange: call not activating?
I am working on simple note taking application basically for educational reasons.
There is NSArrayController which Controller Content binded to notes variable in the AppDelegate. And it's Sort ...
0
votes
0answers
26 views
different object shouldSelectRow and selectedObjects
I have a little problem with NSTableView and NSArrayController, this is my delegate method:
- (BOOL)tableView:(NSTableView *)aTableView shouldSelectRow:(NSInteger)rowIndex{
NSLog(@"Index: ...
0
votes
1answer
58 views
osx, making tableview reloadable
I have another simple question I can not solve by myself. I have two xibs. main.xib for the user input and result.xib for the results. Xib2 starts when a button is pushed on input-xib.
The button ...
0
votes
0answers
89 views
Observing selection of NSArrayController bound to NSTableView. Distinguishing between user selection and other changes
I have many department objects and many employees belonging to a single department. (Simple to-many relationship). I want the user to be able to select a department and then select an employee in ...
0
votes
0answers
27 views
editing value nsarraycontroller - nstableview
Hi at all I have some problem tryng to editing value inside nstableview, I binding the table with an nsarraycontroller, for add and editing a value I use this methods:
- (IBAction) ...
0
votes
0answers
74 views
Recommendation fo Coredata/NSTableView filtered, sorted + AGGREGATION (groupBy)
I'm developing an Objective-C Coredata (SQLite), NSPersistentDocument based application with these requirements:
Simple model: 50-60K records imported from CSV with +30 fields
each.
DOES NOT NEED ...
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
0answers
42 views
make new row in TableView editable after a new object added to NSArrayController
I am using NSArrayController with TableView. I am subclassing the NSArrayController, the TableView's content and Selection Indexes are bound to the subclass. I have a button "Add" which is bound to ...
0
votes
0answers
34 views
Manage value NSTableView
I'm a newbie of cocoa for mac and I have some question, I want to do an app for myself where I manage a database, on mainmenu.xib window I add 3 arraycontroller for 3 nstableview, I get some data from ...
0
votes
1answer
69 views
cocoa bindings with c++ libraries
Is it possible to use bindings (NSArrayController etc) if you have to have a c++ in the model, ie all files in the model have .mm extension.
Have built a small test program in pure Objective-C, which ...
0
votes
2answers
84 views
Sort the contents of an NSScrollView, NSTableView, using Binding in ArrayController
I have an NSScrollView wich is bound with an ArrayController. I need to sort the content alphabetically. I've tried to do this with bindings but I can't find the right thing to bind. I used the ...


