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

15
votes
8answers
12k views

Is it possible to design NSCell subclasses in Interface Builder?

I'm trying to subclass NSCell for use in a NSTableView. The cell I want to create is fairly complicated so it would be very useful if I could design it in Interface Builder and then load the NSCell ...
7
votes
1answer
2k views

Move focus to newly added record in an NSTableView

I am writing an application using Core Data to control a few NSTableViews. I have an add button that makes a new a record in the NSTableView. How do I make the focus move to the new record when this ...
8
votes
5answers
3k views

Change NSTableView alternate row colors

I'm using the "Alternating Rows" option in Interface Builder to get alternating row colors on an NSTableView. Is there any way to change the colors of the alternating rows?
9
votes
3answers
2k views

Respond to mouse events in text field in view-based table view

I have text fields inside a custom view inside an NSOutlineView. Editing one of these cells requires a single click, a pause, and another single click. The first single click selects the table view ...
2
votes
4answers
2k views

NSTableView & NSOutlineView editing on tab key

My app has an NSOutlineView and an NSTableView, and I'm having the same problem with both. With a row in either selected, pressing the tab key puts the first column into edit mode instead of making ...
2
votes
2answers
1k views

Fixed Height NSTableView, Avoid Scrolling

I have an NSTableView that has a very small fixed number of rows. When I create an NSTableView in Interface Builder, the NSTableView is contained within an NSScrollView. I have not found a way to ...
0
votes
2answers
2k views

How to setup a NSTableView with a custom cell using a subview

I am trying to setup a NSTableView with a custom cell using an ArrayController and Bindings. To accomplish this I added a subview to the custom cell. The data connection seems to work somewhat. ...
0
votes
1answer
3k views

NSTableView Tutorial

Does anyone out there know a simple tutorial to make a cocoa-based (not document-based) application that uses the Table View. I couldn't figure out the bindings out. Thanks.
9
votes
3answers
3k views

Binding view-based NSOutlineView to Core Data

I'm trying to implement the new view-based OutlineView as a source list in my Mac app. I can't get values to display, though, so I made a small test app from the Core Data app template, and can't get ...
4
votes
2answers
10k views

Add/remove rows to/from NSTableView in Objective-C

I'm making a simple Todo application in Cocoa. I have added a class (and an NSObject to the XIB) MATodoController: MATodoController.h #import <Cocoa/Cocoa.h> @interface MATodoController : ...
2
votes
2answers
1k views

NSTextField in NSTableCellView

I have a view based NSTableView with a custom NSTableCellView. This custom NSTableCellView has several labels (NSTextField). The whole UI of the NSTableCellView is built in IB. The NSTableCellView ...
1
vote
1answer
1k views

Rounded corners on NSTableView

I have a custom view subclass similar to NSBox that draws a rounded box background. The problem is that if I place a view like an NSTableView in the box view, it does not clip to the rounded corners. ...
0
votes
2answers
275 views

NSTableView - select row and respond to mouse events immediately [duplicate]

I have a view based NSTableView in which the cells contain a number of controls including text fields and edit fields. When a user tries to click on a control within a cell in order to, for example, ...
0
votes
3answers
562 views

Table view not updating according to bindings

This is a very newbie question, and this is something I have done many times before, but there's something I'm missing this time. In my AppDelegate.h file I declare an NSArray and set it as a ...
1
vote
1answer
341 views

NSTableView with plist file

I am very new to mac app development. so just doing some practical exercise. I want to create a tableview which display data from my plist file. I have one windowcontroller class and window ...
0
votes
1answer
941 views

Core Data Image Won't Load Into NSTableView Image Cell

In my code I am storing an image into my Core Data model (works fine). If I set up my view to have an NSImageView and bind its Data to Controller Key: selection and modelKeyPath: myImagePath, it ...
4
votes
2answers
3k views

Change highlighting color in NSTableView in Cocoa?

I am developing a Cocoa application and encountered a problem with highlighting. Standard highlighting color in MAC OS X applications is blue, but it doesn't suit my app, since because of design ...
5
votes
3answers
3k views

How to add a blurred view ontop of a view?

I have an NSTableView that gets reloaded. While new data is loading, I want to add a subview ontop of it with a spinner. I would like the view ontop to be semi-transparent and reveal the view beneath ...
1
vote
2answers
2k views

UITableView-like NSTableView

I wondered how I can make a NSTableView to behave like a UITableView on iOS. For example, splitting the content into sections as well as the typical behaviour of the section headers. Is that ...
4
votes
1answer
1k views

vertically aligning text in NSTableView row

I have a small problem with NSTableView. When I am increasing height of a row in table, the text in it is aligned at top of row but I want to align it vertically centered! Can anyone suggest me any ...
2
votes
3answers
1k views

NSTableView scrollRowToVisible with animation

I am trying to implement an action to scroll to the top of a NSTableView, and the bottom of the NSTableView. I am using scrollRowToVisible but I'd love the action to be animated. Is there a way to do ...
2
votes
2answers
5k views

NSTableView with multiple columns

What is an easy way to set up my NSTableView with multiple columns to only display certain data in one column. I have the IBOutlets set up, but I don't know where to go from there.
1
vote
1answer
1k views

View based NSTableView EXC_BAD_ACCESS on Lion with ARC

This is weird. I've got a super simple project to learn NSTableView, and it's set up in my nib, set as a View-based tableView. I've also set the dataSource and delegate to my controller obejct. When ...
4
votes
2answers
2k views

Setting one side of an NSSplitView programmatically

I've got an NSSplitView and on the left side I've got a tableView (like a source list) and depending on row selection, I want to change the the right side of the split view. I can't quite figure out ...
2
votes
4answers
1k views

Change selection color on view-based NSTableView

Standard highlighting color in OS X applications is blue. Is it possible to change it to another color, e.g. gray? Note that I am using the new view-based NSTableView available starting from OS X ...
2
votes
2answers
471 views

How to add row-span in view-based NSTableView?

I'm trying to get a table layout as shown below working with view-based NSTableViews that have been introduced in Lion. There were multiple approaches described for cell-based NSTableViews, e.g. ...
2
votes
1answer
199 views

NSTokenFieldCell in NSTableView crashes when tabbing, is it a bug?

I was having trouble with NSTokenFieldCell, so I proceeded to create a new project in Xcode to isolate the problem. Here is what I did: Dropped a NSTableView into the main window; selected the ...
2
votes
2answers
3k views

Core Data Fetched Results Controller and Custom Section Header

I am familiar with the common and basic use of a NSFetchedResultsController managing the rows of a table, but I have an interesting problem. My data is organized as such: Schedule <--->> Day ...
2
votes
1answer
567 views

Checkbox on table column won't register click

I've a table view to which I add columns dynamically. It must be done this way because I can't predict how many or which columns I will need. Some columns are checkboxes but I can't click on them ...
2
votes
2answers
2k views

Differences between NSTableView and NSCollectionView

I'm trying to decide which path to take for developing my Snow Leopard app. First, I should preface with the obvious differences: NSTableView can have multiple columns of data for representing ...
1
vote
2answers
453 views

Get all Users on OS X

So I want to implement Parental Controls per user in my app, but I need a way of getting all Users and add them to an NSTableView. These users should be the same displayed by the Login Window, ...
1
vote
1answer
457 views

How can I sort an NSTableColumn of NSStrings ignoring “The ” and “A ”?

I've got a simple Core Data application that I'm working on to display my movie collection. I'm using an NSTableView, with it's columns bound to attributes of my Core Data store through an ...
1
vote
1answer
2k views

How to set background color of cell with NSButtoncell type in NSTableView?

This is my table view delegate: - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)tableColumn row:(int)row { id theRecord; NSMutableString ...
1
vote
2answers
1k views

Displaying row index in an NSTableView bound to NSArrayController

I have an NSTableView which is bound to an NSArrayController. I would like to have one of the table columns showing the index of the table row. This is easy enough to do when you implement ...
1
vote
1answer
771 views

NSDictionaryController doesn't seem to observe changes to content dictionary

I must be missing something simple, but I am having some trouble binding a tableView to an NSDictionaryController. Here is a model of my current scheme: TableViewColumn ...
0
votes
2answers
375 views

How to trigger an action from a NSTableCellView in view based NSTableView when using bindings

I'm facing a problem with a view-based NSTableView running on 10.8 (target is 10.7, but I think this is not relevant). I'm using an NSTableView, and I get content values for my custom NSTableCellView ...
0
votes
2answers
829 views

Sorting in NSTableView

I am creating a NSTableView & using the delegate & datasource link to the class I am flooding the table. In the class i am using the NSMutableArray to store the values for the table. can I do ...
7
votes
3answers
3k views

View-based NSTableView equivalent of tableView:willDisplayCell:forTableColumn:row?

In the past, with a cell-based NSTableView, you could modify attributes of the cell in the tableView:willDisplayCell:forTableColumn:row method (for example, setting a custom NSAttributedString for one ...
3
votes
1answer
1k views

Draw a custom NSTableRowView depending on if next row is group row

I have a custom NSTableRowView implementation to display my data cells. The table also contains group rows using a simple NSTextField. In my custom row view I need to change the drawing of the bottom ...
3
votes
1answer
2k views

How to bind data to a NSTableView from a NSDictionary?

Does anybody knows how to fill up a NSTableView using binding values from a NSDictionary? Thanks in advance.
3
votes
3answers
932 views

How to set row height based on its content in table?

Generally, table has a fixed row height but according to my requirements I need to set height of each row according to content within it. Can anyone suggest me some solution for it? Thanks, Miraaj
3
votes
1answer
685 views

Cocoa: how to nest a button inside a Table View cell?

Take a look at the top pane of the Xcode window. There's a table list, with checkboxes in one of the columns. That's the interface I want to do. So how do you nest a button in an NSTableView cell?
2
votes
1answer
1k views

NSButtonCell in NSTableView: click handling

I set NSButtonCell as a cell type in a Table Column in my NSTableView. I implemented an IBAction method, but I can't wire it with NSButtonCell in IB - the wire don't want to highlight a button from ...
2
votes
1answer
1k views

Cocoa - View-Based NSTableView, using one cell in multiple tables

I've got a problem. [for which the only example I can find was shown during one of the WWDC 2011 presentations ("Maximising Productivity in Xcode 4"), but there is no source available (it was an app ...
2
votes
1answer
382 views

NSTableView drag cell to NSView

Could someone nudge me in the right direction on this. I want to drag a NSString from a table cell to a NSView and then do something based on that string but the drag and drop stuff has my head ...
2
votes
1answer
497 views

NSTableView redraw not updating display, selection sticking

Although I know of a solution to this problem, I am interested if someone can explain this solution to me. I also wanted to get this out there because I could not find any mention of this problem ...
2
votes
1answer
2k views

What is the easiest way to custom NSTableView cell?

I'm an iOS developer. I recently started my Mac project, but I found that unlike UITableViewCell, which is a subclass of UIView, the cell of NSTableView is NSCell, and I even can't create it in IB. I ...
2
votes
1answer
1k views

NSButtonCell as Checkbox in a NSTableVIew don't get selected

I have a NSTableVIew for multi-selection purposes with two columns, the first one with a NSButtonCell as checkbox and the other one as a title. The idea is to check the items to be added afterwords ...
2
votes
1answer
548 views

NSTableView: blue outline on right-clicked rows

I'm wondering how I can get rid of the blue outlines that Cocoa draws around rows in NSTableView / NSOutlineView when right-clicking on them. It doesn't seem to be a classic "highlight" nor a ...
2
votes
2answers
414 views

NSTableView get rid blank space separating columns

I have an NSTableView with 4 columns. I also have a custom background color for each row. The only problem is I have these ugly white spaces where the gridlines would go in both the horizontal and ...

1 2