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

20
votes
3answers
9k views

Double click an NSTableView row in Cocoa?

I need my application to open a window when a user double clicks on a row in an NSTableView. I'm having a bit of a difficult time finding information or examples on how to accomplish this. Can anybody ...
17
votes
3answers
1k views

Opening a gap in NSTableView during drag and drop

I've got a simple, single-column, view-based NSTableView with items in it that can be dragged to reorder them. During drag and drop, I'd like to make it so that a gap for the item-to-be-dropped opens ...
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 ...
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 ...
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 ...
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?
8
votes
2answers
401 views

Issue with a checkBox in a viewbased NSTableView

I have an NSDictionary that holds all the data: One title (not important for this question) One link (not important for this question) One array of NSDictionary containing again 1 title and 1 link ...
7
votes
2answers
3k views

How to make NSTableView scroll to most recently added row?

I'm dynamically adding rows to an NSTableView. When I issue [table reloadData] I can see the scroll view move and if I move it by hand I can see the new value on the table. But how can I scroll it ...
7
votes
1answer
6k views

Selecting A Row In An NSTableView Programatically

I want to Select A Row in my table view programatically, I believe I would use selectRowIndexes:byExtendingSelection: (is this a delegate method?). The other thing is how would I use that method to ...
7
votes
3answers
3k views

NSTableView and NSOutlineView drag-and-drop

I have an NSTableView and an NSOutlineView, both with their content provided by bindings, that I'd like to have some drag-and-drop functionality: Drag rows from Table A onto a row of Outline B, ...
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 ...
7
votes
2answers
216 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 ...
7
votes
2answers
2k views

Sorting a NSArrayController backed NSTableView

I have a NSArrayController and a NSTableView. They show tracks from iTunes. I can sort the list by clicking in the header. Is there a way to set up a default sort descriptor for the table view so it ...
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 ...
7
votes
1answer
1k views

Animating rows in an NSTableView

Is there a simple way of animating rows in an NSTableView? I'd like to be able to do something like flash a row, or fade out a row. Essentially - to provide a bit of visual feedback when rows are ...
6
votes
4answers
4k views

Storing an NSImage in a Core Data Model

What is the correct way to store an NSImage in a Core Data Model? I have assumed adding an Attribute to an Entity and giving it the Type "Binary" should work, but it is not working. I have a table ...
6
votes
1answer
483 views

View-based NSTableView filtering + animation

I have a view based NSTableView that I sometimes filter using NSPredicate. Is there any way to animate the items being removed/added/reordered throughout the tableview to have the same effect as ...
6
votes
1answer
326 views

NSTableView how to click anywhere in the cell to edit text?

I have a very simple NSTableView hooked up via NSArrayController and bindings to my model. I would like to tweak the behaviour the of the view slightly when double clicking to edit. It seems the ...
5
votes
3answers
2k views

Hiding NSTableView header?

How do I hide an NSTableView header completely, so that it does not take any space up?
5
votes
2answers
1k views

Show contextual menu on ctrl-click/right-click on header of NSTableView

I'm searching for an elegant way to detect a right-click/ctrl-click on the header of an NSTableView. When the right click occurs, I want to display an contextual menu. - (NSMenu ...
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 ...
5
votes
3answers
1k views

Exposing model object using bindings in custom NSCell of NSTableView

I am struggling trying to perform what I would think would be a relatively common task. I have an NSTableView that is bound to it's array via an NSArrayController. The array controller has it's ...
5
votes
1answer
442 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. ...
5
votes
2answers
2k views

Clickable url link in NSTextFieldCell inside NSTableView?

I have a NSAttributedString that I'm using in a NSTextFieldCell. It makes several clickable url links and puts a big NSAttributedString inside the NSTextFieldCell. Whenever I am viewing the ...
5
votes
1answer
1k views

Creating a custom title bar on a standard NSWindow

I've been trying to build a specific look for my menubar app. I've been using a NSWindow with a NSBorderlessWindowMask style mask and setting [window setOpaque:NO] and [window ...
5
votes
3answers
831 views

Custom background in view-based NSTableView

I have custom alternating row colors in my view-based NSTableView by overriding NSTableRowView's -drawBackgroundInRect:. This works for the most part in that the colors of the cells themselves change, ...
5
votes
1answer
562 views

Animating a row in an NSTableView

How could I go about animating a row in a table view? I've had a go at it but get stuck at the the first post which is getting the actual cell, here's what I do: int selectedRow = [tableView ...
4
votes
3answers
3k views

How to update NSTableView without using -reloadData?

I am new to the Mac. I am trying to update a particular cell in NSTableView without using -reloadData, as -reloadData updates the whole table. I have tried everything but all was in vain. I am trying ...
4
votes
1answer
2k views

Drag'n'Drop Support for NSTableView with CoreData Storage

I have to NSTableViews in my application both display the data which is being stored as "CoreData". The TableViews are pretty basic, as the whole programm is. The right TableView shows a list of ...
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 ...
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 ...
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 : ...
4
votes
5answers
893 views

How do I implement a customized list in Cocoa?

I want to build a Cocoa App with a list of entries very similar to the ToDo list of Things.app (see the screencast). The question is whether I should use a TableView, a CollectionView or a WebView. ...
4
votes
2answers
1k views

NSTableView Row Height based on NSStrings

Basically, I have an NSTableView with 1 collumn, and I'm inserting long strings into each row. However, not all the strings are long, so I'd like the height of each row to be different based on how ...
4
votes
1answer
1k views

NSTableView setting the sort column?

I have a NSTableView with multiple columns. clicking each of the columns sorts by the column like in iTunes. However when the tableview first loads the rows are unsorted and no tablecolumn is ...
4
votes
4answers
3k views

NSTableColumn size to fit contents

I am developing in and against Mac OS X 10.6 (Snow Leopard). When I double-click between two of my NSTableView's column headers, the column on the left autosizes, like you would expect. I want to ...
4
votes
1answer
2k views

how to code NSButton to look just like image

Using code (not the Interface builder) I need to create an NSButton that looks like an image. Specifically I want to use NSImageNameStopProgressFreestandingTemplate and I need it not to look like ...
4
votes
2answers
508 views

NSTableView – select clicked row after editing was ended by clicking a different row

I have an NSTableView which gets populated without bindings. In the datasource method tableView:objectValueForTableColumn:row:, I re-sort my data and tell the table view to reload after committing ...
4
votes
2answers
209 views

Populate NSTableView with unknown number of columns

I have a NSTableview and a button. NSTableview has a unknown number of columns. The first column has a image well and 2 text boxes, the others (again, unknown number) are normal textbox columns. ...
4
votes
1answer
652 views

Fade effect at top and bottom of NSTableView/NSOutlineView

I'm looking for a way to draw a fade effect on a table view (and outline view, but I think it will be the same) when the content is scrolled. Here is an example from the Fantastical app: Also a ...
4
votes
2answers
597 views

Is it possible to design NSTableView cells using Interface Builder? (not for iOS apps)

Is it possible to design NSTableView cells using Interface Builder? I know this is actually possible if your project is for iOS but somehow IB does not render the cell container if its for Mac OS X.
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 ...
4
votes
2answers
1k views

Clickable links within a custom NSCell

I have a custom NSCell with various elements inside of it (images, various text pieces) and one of those text blocks may have various clickable links inside of it. I have my NSAttributedString ...
4
votes
2answers
703 views

NSTableView makeViewWithIdentifier across nibs

I have a similar question to Cocoa - View-Based NSTableView, using one cell in multiple tables, amplified by Apple's own docs for makeViewWithIdentifier:owner: "Typically identifier is associated ...
4
votes
2answers
1k views

Sectioned NSTableView using NSArrayController

I'm trying to create a sectioned NSTableView using NSArrayController and cocoa bindings. I'm searching for a similar approach like with NSFetchedResultsController in iOS, where you can set a section ...
4
votes
1answer
250 views

Disable colour change when source list loses focus

When an item is selected in the source list it is highlighted in blue. When another element on the window is selected, however, the highlight becomes a lighter blue as the source list is no longer ...
4
votes
2answers
229 views

NSTableView Right Clicked Row Index

I'm looking for a way to get right-clicked row index from NSTableView but I can't find any delegate methods or class attributes for it. Any suggestion is appreciated.
4
votes
1answer
434 views

Why is my cell based NSTableView calling viewForTableColumn?

I have a view controller that's the delegate for 2 tables, a view based table and a cell based table. The cell based table is calling viewForTableColumn when it should be calling ...
4
votes
1answer
759 views

Changing NSTableCellView's objectValue in view-based NSOutlineView does not propagate to dataSource

I use a view-based NSOutlineView to display and select hierarchically structured items for a scientific application. Each row in the outline column represents an item, signified by an item-specific ...
4
votes
2answers
570 views

Adding a row with transparent background

I have an NSTableView, with an "add" button below it. When I click on the button, a new row gets added to the table and is ready for user input. The row appears in a white color. Can I set the color ...

1 2 3 4 5 21