An Apple object that displays data for a set of related records, with rows representing individual records and columns representing the attributes of those records.

learn more… | top users | synonyms

1
vote
2answers
85 views

Attending to each row of NSTableview to change image on Click-

I'm trying to add this example's ImageAndTextCell.h class to my project. I have added it successfully. It looks something like below On row click i get the selected index and on IBAction I need to ...
2
votes
1answer
170 views

Add checkboxcell programmatically to NSTableView

i am using the following code to add cells to a NSTableView. But this is adding textboxcells. i would need to add CheckboxCells instead. Could somebody please tell me how i can do that? thanks! ...
7
votes
2answers
260 views

Double-click editing of NSTableView columns headers

Is it possible to change the names of NSTableView columns by double clicking on the columns headers? Any suggestions on the best way to do this. I am trying: Set the double action of the table view ...
0
votes
0answers
42 views

How to keep group and item NSTableViews in sync?

I'm working on an app for which I'd like to do something very similar to the problem proposed in this question: How to add row-span in view-based NSTableView? The second answer intrigues me as a ...
0
votes
1answer
58 views

Delete column in nstableview that has content

I have a tableview with one textboxcolumn and 7 checkbox columns. This table will eventually be filled with data, and at some later point i have to remove one of the columns somewhere in the middle. ...
0
votes
0answers
109 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
34 views

Does an entire NSTableView redraws when we change the drawing attributes of one row?

I am using an NSTableView in my application and when the user clicks a row I use core Animation to highlight that row. The problem is that if I draw the shadow of row upwards it is drawn correctly but ...
0
votes
1answer
286 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.. ...
-4
votes
2answers
217 views

Adding rows in a NSTableView?

I have a tableView and two buttons. One to add a row, and one to remove a row(selected). How would I add a row of textbox cells? Also, how would i remove the selected row? Would it be possible ...
0
votes
0answers
54 views

Striking through a row in a table view in cocoa

I want to strike out a row in a table view . But this is not working. -(void)awakeFromNib { if(userOwnBookingDataSource == nil) userOwnBookingDataSource = [[NSMutableArray alloc]init]; ...
1
vote
0answers
28 views

How to get editedColumn & editedRow on a view based NSTableView

I want to know the current column and row that it is being edited on a view based NSTableView. The editedColumn & editedRow properties both return -1. Thank you.
2
votes
1answer
126 views

Custom background image on NSTableViewCell

I have a view based tableview with a custom cell with a bunch of labels and an image on it. I want to add a background image to each cell. First I tried adding an imageview to the cell but that covers ...
1
vote
1answer
79 views

secure textfield in nstableview

first of all lets say that i searched quite a bit for an answer to this and wasnt able to find one. i have a nstableview, with 5 columns, all with text field cells. one of these columns is a password ...
0
votes
2answers
51 views

striking out a data on the table view in cocoa

I have a set of values in table view. I need to delete/cancel a row. I need to strike out that row intimating the user that it has been cancelled. How would i draw a line on the data of the row/ ...
0
votes
0answers
63 views

Cocoa: custom NSCell not respond double click action

I focus on a cocoa app supported on 10.6, and I use cell-based NSTableView. I custom the NSCell so that it can display image and text. The Problem here is : when I set the doubleClickAction to the ...
0
votes
0answers
95 views

How can i load more sorted data in NSTableView when clicked on column header for sorting that column?

I have a large sqlite database table with 5 columns datatime, name, age, address and a primary key the.The older data at the top and more recent one at the bottom. I am showing this records in a ...
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 ...
1
vote
0answers
72 views

Best way to sync NSTableView automatic reloading and removing objects

Let's assume we have a Mac app with a NSTableView inside it (with a DownloadTableView sublassed from NSTableView and DownloadCell sublassed from NSActionCell to display progress bar and all info ...
0
votes
1answer
67 views

Change font color in NSTableHeader

How can I change font color in header of NSTableView? In Xcode Interface Builder - any color modifications in Font Panel of Table Column properties are ignored / discarded. Also I can not find a ...
0
votes
0answers
32 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
47 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
0answers
30 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: ...
1
vote
1answer
101 views

cocoa NSTableView in CustomView in SplitView size don't adjust

I have a NSSplitView as my "Superview". In this SplitView is a Custom View with a NSTableView. I'm try to load my Custom View from a Controller class and then adjust the size of the custom view and ...
0
votes
0answers
101 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
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
2answers
127 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
55 views

NSTableView Sorting Events by Day of Week

I've been working with EventKit on OSX and have yet to quite figure this out. Using an NSTableView & NSTableCellViews, the goal is to use an array of EKEvents, through an ArrayController, to ...
0
votes
1answer
104 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
1answer
47 views

Cocoa: natableview resize

I hava a simple cocoa app: a 3 columns NSTableView in the window. I set the minimum and maximum size of the window. I'd like to : when I resize the window, the 3 columns are resized, too. It means: ...
0
votes
1answer
64 views

How can I change NSTableView in NSScrollView?

I'm building a simple data base viewer and for different tables in database I need different TableViews on my main form (with fixed column's identifier and count). So how can I programmatically change ...
0
votes
0answers
36 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 ...
1
vote
1answer
152 views

NSTableView reload data from different controller

I am having problems updating the content of two tables, which are placed in two different tabs of a NSTabView and each controlled by a different controller (Controller1 and Controller3), from a third ...
2
votes
2answers
121 views

NStableview setDatasource EXC_BAD_ACCESS

Im trying to just create a simple menu with an NSTableView using an NSarray. When i set the data source to the class i created i get EXC_BAD_ACCESS error. Wierd thing is, it worked in macruby? ...
6
votes
1answer
521 views

How to use autolayout with view-based NSTableView when view are provided by an NSViewController?

I have made the following example app to illustrate my question. The left view is a place holder view (added in Interface Builder). When the App loads I add a subview managed by a NSViewController. ...
0
votes
1answer
85 views

Selecting a table view row

I want to select a specific row from an NSTableView using code. Here is my code: PreferencesController *pref = [[PreferencesController alloc] init]; [defaultVoiceView selectRowIndexes:[NSIndexSet ...
1
vote
1answer
30 views

NSImage is 'retained' between drag operations

Hi I have implemented: - (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent *)dragEvent offset:(NSPointPointer)dragImageOffset { ...
0
votes
1answer
111 views

Is auto layout system different for NSTableCellViews?

I have created a subclass of NStextField that expands and shrinks to accomodate changes in the text. Here is the code: - (NSSize)sizeToFitContent { NSRect frame = [self frame]; CGFloat width ...
0
votes
4answers
489 views

Automatically adjust height of a NSTableView

I have asked this question once before, but I'm just not very satisfied with the solution. Automatically adjust size of NSTableView I want to display a NSTableView in a NSPopover, or in a NSWindow. ...
0
votes
1answer
54 views

NSTablview NSTextFieldCell SetSelectable -

I was trying to make one of the nstextfieldcell unselected for a particular condition. I have attached the sample code: -(void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell ...
0
votes
1answer
102 views

selectedRow return null

i have a NSTableView on a window, the data is populated using a NSMutableArray and that is Ok after selecting a rows, when i check in code [myTableView selectedRow]; or [myTableView clickedRow]; ...
0
votes
1answer
102 views

Setting Selected Index of NSPopUpButtonCell in NSTableView

I populate a column in an NSTableView with NSPopUpButtonCell instances (just dragged such a cell to a column in IB). Everything works fine, except for one thing : when I try to set the selected item ...
3
votes
1answer
435 views

Draw NSTableView Alternating Rows Like iTunes 11 [closed]

EDIT: Please make sure to read the whole post. I am aware that there are other questions on SO about changing alternating row colors. That's easy and it's not what I want to do. I want to draw ...
3
votes
1answer
195 views

Unsatisfiable constraints with NSTableView when calling reloadData

I have a view-based NSTableView with the table view's NSTableCellView's setup graphically through interface builder in the latest version of Xcode on 10.8.2. When I call -reloadData on the ...
0
votes
0answers
86 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. ...
2
votes
3answers
278 views

Calculating group row at run time of a NSTableView

I have a NSTableView, filled with song titles. The songs are ordered by artists, so I can display the artist name as a row view. Code Until now, I had to iterate through the table data and ...
0
votes
1answer
53 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 ...
0
votes
1answer
220 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 ...
1
vote
0answers
101 views

NSWindow and text smoothing in NSTableView cell view

I'm writing an OS X app and have a problem with font smoothing in separate window. I have a text field where you put text and suggestion window which pops up with a list of suggestions according to ...
0
votes
0answers
177 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 ...
0
votes
0answers
94 views

How to make NSTextFieldCell inside NSTableView scrollable?

I have some NSTextFieldCell with long text. So i want to make itself scrollable by mouse. I have tried [NSTextFieldCell setScrollable], it can't scroll by the mouse and only single line of text is ...

1 2 3 4 5 22