Tagged Questions
0
votes
0answers
16 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
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 ...
0
votes
1answer
46 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
100 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 ...
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
75 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 ...
2
votes
1answer
53 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 ...
1
vote
2answers
195 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
93 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 ...
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
25 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
0answers
85 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
72 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
108 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
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
0answers
82 views
NSArrayController - Inserting object for a specific value
I'm trying to insert an image into nstableview which has a specific value for one column. So if this column equals this then I insert my value in the other column. It binded to NSArraycontroller.
...
0
votes
1answer
209 views
Filtering a single-column NSTableView using NSArrayController
I present a sheet with an NSTableView (one column), an NSSearchField and an NSButton ('Add').
What I want is to set the content of the table view to a list of strings. This list of strings is in an ...
0
votes
0answers
159 views
AWS downloading files from S3 using iOS SDK - Logic check
I'm trying to use AWS S3 service for downloading files. These are images used as thumbnails. I do a check where the I look for the thumbnail in the local machine. If the file is not available I ...
1
vote
1answer
221 views
NSTableCellView and NSArrayController - Mac OSX
Is it possible to bind a NSArraycontroller with NSTableView whose cells are not text cells but nstablecellview? I'm new to cocoa programming, tried searching on this but no proper explanation on this.
...
0
votes
0answers
29 views
NSArrayController for 2 NStableview with different keypath
I'm trying to load multiple NSTableViews with NSArrayController. So I'm assigning one NSArrayController to each table view and add object according to the key path. However only the first table is ...
0
votes
0answers
178 views
Regarding Cocoa, NSArrayController, NSTableView, and NSSet intersections
My question is very much like
Bind a NSSet representing a to-many relationship to the selection of a NSArrayController
This is a working app with multiple versions in the iOS App store and now I am ...
1
vote
0answers
103 views
NSArrayController selectedIndex changing to 0 after addObject is called
My setup:
I'm making a tab-based application using an NSTableView to display tabs and allow users to select tabs.
I have an NSTableView bound to an NSArrayController (tableView.content is bound to ...
0
votes
1answer
135 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 ...
0
votes
1answer
29 views
how to rebind nstableview IN COCOA
I have a NSTableView and a NSArrayController for the NSTableView.
there is only one column in the table,"name"
at first, user open one file, in the arrayController will be ...
0
votes
1answer
67 views
How to pre-fill a NSTableView bound to an ArrayController in a Core Data ( Document based)
Here is my problem:
I have a Core Data- Document based program with ARC ( Automatic Reference Counting);
I want the tableView shows some data at the beginning.
but I receive nothing.
Here is what I ...
0
votes
1answer
184 views
Enable multiple selection of rows in NStableview
I created a small application that is based on the structure of this example application.
But now I need you to select multiple rows in tableview, I tried to find a solution but did not succeed. Could ...
0
votes
1answer
156 views
Search resets NSArrayController selection to none
I've got an NSTableView bound to an NSArrayController via content and selection indexes. All great so far - content displayed, etc.
Now an NSSearchField is bound to the array controller via ...
1
vote
0answers
69 views
What could prevent an NSTableView from being sortable?
I've inherited a cocoa project that has an NSTableView in it, and clicking on the column headers does not sort the view, but I want the columns to be sortable. I am using cocoa bindings.
Things I've ...
3
votes
1answer
219 views
Make NSTableView row editable when adding object with NSArrayController
I have a table column of NSTableView bound to to an NSArrayController in Interface Builder. The array controller is bound to Shared User Defaults Controller for the Content Array. I had to select ...
-3
votes
1answer
440 views
[__NSArrayM objectAtIndex:]: index 4 beyond bounds [0 .. 3] [closed]
I tried to remove array controller that bound to a nstableview.
but it happened to thrown runtime exception below.
2012-09-10 12:13:51.741 TestApp[30553:403] *** -[__NSArrayM objectAtIndex:]: index 4 ...
0
votes
0answers
123 views
NSManagedObject->NSArrayController->TableView
So here's my problem I start my app and choose a directory that gets all of the audio files in that directory and lists them on a table view.
The list is accurate on the tableview up until I scroll ...
1
vote
1answer
270 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
IKImage View causing an exception and not displaying content
I have a tableview that contains a directory's files. When I select a row from the table , I want to preview the contents of it ( for example the contents of an jpeg image or a pdf file) . I am ...
-1
votes
1answer
168 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 ...
0
votes
0answers
44 views
NSTableView strange behavior. Fills until certain point and doesn't display anymore data
Today I encountered a strange behavior of a NSTableView I'm working with:
I use this tableView with Cocoa Bindings. It has one column and displays the name attribute of objects in a mutableArray.
...
0
votes
0answers
63 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
0answers
91 views
TableView bound to NSArrayController clears when parent object re-pointed?
I have an NSTableView that uses an NSArrayController to fetch and display self.myObject.anotherObject.myArray.name. The bindings for the NSArrayController are to Files Owner, ...
0
votes
1answer
189 views
NSTableView contents not being refreshed properly
I've set up an NSTableView, whose columns are bound to an NSArrayController which gets its contents from an NSMutableArray (Matches) of NSMutableDictionary instances.
Although the thing is working, ...
1
vote
1answer
283 views
Objective-C: How to populate an NSTableView from an NSArrayController, and save selected indexes with Shared Defaults Controller?
I have an NSTableView that I want to load it's value from an NSArrayController. The array is built dynamically, and has the potential to change. I also want to save the selected indexes in ...
0
votes
1answer
175 views
Sort Table by column heading and keep NSArrayController in sync
I'm a relatively inexperienced Cocoa programmer who learns mostly by looking at sample code and trial and error, and I'm stumped by this one: I have a View-Based Table that is bound to an ...
0
votes
1answer
216 views
Auto-sort table column contents bound to NSArrayController
So, this my case :
I've got an NSMutableArray (of NSMutableDictionary instances) bound to an NSArrayController. Each element's name value is, in turn, bound to the value of the first table column.
...
0
votes
1answer
336 views
How to identify an row object in a NSTableView with a specific index?
I use an NSArrayController in InterfaceBuilder to manage objects displayed in am NSTableView. When I selected one or multiple rows the following code gets called to delete the object(s) and update the ...
0
votes
1answer
317 views
NSArrayController + NSTableView : automatically save changes without Core Data
OK, so I'm implementing a classic scenario :
A NSPopupButton with some items in it
When the selected value changes, my itemsArray is updated
The itemsArray is linked to an NSArrayController
Each ...
0
votes
0answers
155 views
How to search between two dates?
I have two NSDatePicker's and one NSButton by title search. I wanna search the data in NSTableView (NSArrayController) by taking the period or dates or time between the input dates from ...
0
votes
0answers
186 views
NSComboBoxCell isn't showing it's values. .
As the title says I'm declaring a NSComboBoxCell, I have an array controller that instantiate objects of class selectFood (just for say something), and that class has a NSComboBoxCell property called ...
2
votes
1answer
573 views
NSTableView: programmatically adding one row results in selection of many rows with the same values?
now, i've been reading just about everything about NSArrayController.
i have properly setup my xib, the NSArrayController, NSTableView and the bindings -- everything's working except for one odd ...
0
votes
1answer
153 views
Core Data bound NSCollectionView or NSTableView with one item static?
Is it possible to have a NSCollectionView bound to a core data model (by NSArrayController) and having the first item not to show the first item of NSArrayContoller but a custom view (NSButton)?
...
0
votes
2answers
412 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 ...

