0
votes
0answers
15 views

Create group rows in NSTableView using CoreData backed NSArrayController

Say I have a bunch of Article objects stored within the core data model. Each article maintains, a reading progress attribute which denotes how much of the article has been read by the user. Once the ...
0
votes
2answers
107 views

Programmatically bind a NSTableView

I trying to get a better understanding of cocoa bindings. I can get a basic Table working with a NSArrayController in IB builder. I'm using the same project and attempting to connect the bindings ...
0
votes
0answers
45 views

How do I determine the row in NSTableView that represents a specific object instance?

I have a NSTableView driven by NSManagedObject/CoreData and a custom graph view on the same form which plots each row on a X/Y grid based on some derived calculations. Each point on the graph view ...
1
vote
0answers
33 views

Use a bound NSTableView to create / delete reflexive relationships

In my Core Data application, I have a single "Person" entity with one attribute ("name") and one relationship "persons", which is in many-to-many relation with Person (reflexive relation). My idea ...
1
vote
1answer
152 views

Core Data & NSTableView Bindings

I am trying to bind my core data to a NSTableView. I am getting information from an API then wanting to add it to NSTableView. It looks like it is setup correctly because each time I have it call the ...
0
votes
1answer
59 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
73 views

X-Code OS/X: How to display results of a core data fetch request in a table view

I perform a fetch request on a managed object context that is written into an array. The fetch itself works well and the array is filled correctly. However, as I try to display the array contents in a ...
1
vote
2answers
231 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
1answer
289 views

add columns to a table based on core data readout in specific order

The situation: there are two tables, a main table and a secondary table. the main table is connected to a core data database. i have set up the core data and the main table just like i wanted it.. ...
0
votes
0answers
15 views

Connecting 2 NSTableViews

I have a NSTableView with names in it which populates text fields with their personal details. I am working on creating my own patient management system so I also want each individual person entity ...
0
votes
0answers
75 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
1answer
54 views

CoreData Binding and custom Cell

I have an app with a CoreData Database and a NSTableView. I want to do a customCell with 3 key values from database. So I create an NSTextFieldCell Class but the binding is only for a key value. How I ...
1
vote
1answer
281 views

NSPopupButton within a view-based NSTableView

I am using core data, with an up-to-date XCode. I have a table, view-based, with NSPopupButtons in one of the columns. The table has an array controller that gets its data from entity A. There is ...
0
votes
1answer
168 views

Can NSTableView column bound to coredata Entity NSArrayController in secondary thread work?

My program uses Coredata (SQLite), NSPersistentDocument, NSTableView and an (entity) NSArrayController. I want to have the NSTableView's columns in the Main thread bound to the entity ...
0
votes
1answer
98 views

Core Data NSTableView do not match

I'm having an issue with Core Data. I have an Array Controller setup that links the data to an NSTableView. I have a function that runs code every few seconds and in it I display the list of files ...
0
votes
1answer
142 views

NSButton inside tableCellView: how to use the “action invocation” for a View Based NSTableView/NSArrayController

For a View Based NSTableView/NSarrayController: how would I use the "action invocation" from a NSButton inside a tableCellView to change an attribute for an entity? I have the following setup: A ...
-1
votes
1answer
67 views

NSTableview and calculation of attributes

Can anyone please help me with the following problem? I'm creating an application which holds the entity, called a salt. This entity has some attributes like milligram and millmolar (concentrations). ...
0
votes
1answer
459 views

Drag & Drop Reordering in NSTableView of CoreData object doesn't work

I'm trying to implement a simple table, where I can put an object parent into a user definable order. I bound a parentTableView to a parentArrayController and set the sortDescriptor to the key "order" ...
0
votes
1answer
74 views

TableView with Core Data: call saveAction from windowShouldClose

I have a TableView bound to a Core Data entity and I have a saveAction method in my AppDelegate. First I create a button to link to saveAction in AppDelegate. When I click the button the saveAction ...
0
votes
0answers
72 views

OSX CoreData data issues

I have a NSTableView that I use binding to an ArrayController and I'm able to open a directory and display the files within the table just fine. I also have a column that holds an image. I quit the ...
1
vote
1answer
294 views

How can I populate an NSTableView from Core Data via an NSArrayController?

Originally I was populating my NSTableView via an outlet and had set the dataSource of the table to my controller class. I'm trying to switch to using an NSArrayController so I can enable sorting by ...
0
votes
0answers
43 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 ...
2
votes
1answer
181 views

Cocoa Bindings with Core Data not updating all columns

I'm having this strange issue where I have an NSArrayController bound to a managedObjectContext and using the array controller to populate an NSTableView. I can create an object and insert it and it ...
0
votes
0answers
51 views

How to switch NSTableViews

I am designing an app which requires 5 separate tableViews to store data to CoreData. In the main nib I have created a custom view which switches subviews using an NSPopUPButton. For example: ...
0
votes
0answers
67 views

Update label when a nstableview is populated with Core Data using a nsarraycontroller

I have a NSTableview which I'm populating via a NSArrayController with Core Data. I have a label which should display a count of items which are displayed in the NSTableview which have a checkbox ...
0
votes
1answer
122 views

Why do I need to constantly reload my data to fill my NSTableView?

I'm working in Objective-C and coming across a consistent problem in my program. I have a bunch of NSTableViews, and up until this point, I've always had to "reload" the data constantly in my two ...
0
votes
1answer
132 views

NSTable CoreData and selection

I have a very simple App. It is a non-document based CoreData app. The nib contains one NSArrayController and a window with a NSTable with one column. Below the table are three buttons, Add, Delete, ...
0
votes
1answer
51 views

Core data entities sharing same property?

I've a core data entity called Record with a property called sentence of type NSString and another created of type NSDate. This is tied to an NSTableView through a NSArrayController that's connected ...
1
vote
0answers
254 views

NSTableView, NSArrayController, CoreData - Footer View to refresh list

I have an NSTableView bound to an NSArrayController which fetches some entries from core data. I would like to have a custom view cell in the bottom of that NSTableView so that when the user scrolls ...
-1
votes
1answer
207 views

Bind data using multipy NSArrayControllers and NSTableView

Question How to display data in Subgroup based on row selection in Group ? Question naming NSTableView with name Group NSTableView with name Subgroup Group NSArrayController with name Groups ...
0
votes
1answer
470 views

CoreData/RegEx Error: Can't create a regex expression from object

I seem to be getting an error I can't really understand. Hopefully this doesn't get too confusing and longwinded, but as I can't seem to find any answers in my searches, I think it might be necessary. ...
0
votes
2answers
568 views

Iterate over NSTableview or NSArrayController to get data

I have an NSTableview which s bound to a NSArrayController. The Table/Arraycontroller contains Core Data "Person" entities. The people are added to the NSTableview by the GUI's user. Let's say a ...
0
votes
1answer
430 views

Create entity programmatically and add it to an array controller

I have an array controller which is bound to an nstableview. I also have some nstextfields which the user populates then presses an "add" button. I want to take those fields, first_name and ...
1
vote
1answer
174 views

How do i implement section in core data for mac?

iOS provides NSFetchedResultsController class with sectioning support: NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] ...
2
votes
1answer
204 views

How to handle extremely large CoreData store in NSTableView?

Say you have a core data entity with more than 10,000,000 objects in a sqlite backed core data store, how do you effectively display all that information in an NSTableView? In particular, how do you ...
2
votes
1answer
455 views

Exception when deselecting NSTableView row

I'm a bit lost with this... It seems I can't find why I can't deselect rows from my NSTableView. I allowed empty selection in Interface Builder but as soon as I call deselectRow: or deselectedAll:, I ...
1
vote
1answer
542 views

How to set relationships using NSComboBoxCell, NSTableView, and Core Data

I have an example application I'm working on to help me learn about Core Data. In this application I created a model consisting of the entities "Friend" and "City". The application list my friends ...
0
votes
1answer
191 views

Very odd behaviour by Core Data and NSArrayController

I've a document-based application powered by Core Data with an in-memory store. I have a table backed by an NSArrayController that is suppose to list all model objects of type Buffer. My UI also ...
0
votes
3answers
459 views

Dynamically display data from (design-time unknown) SQLite db to a table view

I'm trying to have a Table View displaying the content of a generic SQLite table. The user selects a SQLite file at runtime (I cannot know its structure at design-time). I am then able to extract a ...
3
votes
1answer
220 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 ...
0
votes
1answer
327 views

NSTableView doesn't update after sorting via column header

I have an NSTableView bound to a core-data-backed NSArrayController by binding individual columns to arraycontroller.arrangedObjects. I have the default out-of-the-box sorting working, but when I ...
0
votes
2answers
259 views

NSTableview is randomly empty on startup

I'm hoping this is a common enough problem that a quite a broad question might have a possible obvious answer. Why would my NSTableView - after the application has loaded - sometimes be filled with ...
0
votes
2answers
102 views

displaying balance in core data

I have 3 entities in an example app: Account name balance (NSDecimalNumber overall balance of account) balances (to-many relationship with Balances) transactions (many-to-many relationship with ...
1
vote
0answers
274 views

cocoabinding a nstableview nested in nscollectionviewitem

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 ...
0
votes
1answer
179 views

How do you store child NSTableView settings for each parent item?

What is the best way to store an NSTableView's settings (ideally leveraging its autosave capability) for each item in its parent NSTreeController? I'm basically looking to reproduce the way iTunes ...
0
votes
1answer
386 views

Selected Object in managedObjectContext

i have a core-data app with an entity that has hostname username password (all NSString) for attributes. Then I'v linked up the core data model, the array controller, and table view with add and ...
1
vote
1answer
71 views

Records in NSMutableArray not sorted

I am using a NSArrayController to display the records in a NSTableView. I am reading back a selected record using [recordArray objectAtIndex:[tableView selectedRow]]. This is working fine when I don't ...
1
vote
1answer
2k views

Getting data from selected row in NSTableView linked with Core Data

Hey, So i am working on a Core Data app and I have an NSTableView linked with the Core Data. The table has three columns. Name, Position, Salary. I also set up a double click action. now what I need ...
2
votes
0answers
345 views

How to auto-select next row after deleting current row by core data context?

I am using Core Data to manage objects and using a NSTableView to display those objects. The table columns are binded to objects' properties through a NSArrayController. When users click the delete ...
0
votes
2answers
2k views

Core Data, NSTableView and getting Selected Row Value

I'm pretty new to Core Data and managed to get the NSTableView to show my Core Data values. The entity that the table uses is Emotes that have the two properties, Emote (string) and Usage (integer 16) ...

1 2