Tagged Questions

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

11
votes
8answers
9k 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
2answers
4k 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 ...
6
votes
4answers
1k 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?
6
votes
1answer
824 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
2k 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 ...
5
votes
1answer
399 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 ...
5
votes
1answer
282 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 ...
5
votes
1answer
832 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 ...
4
votes
2answers
657 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 ...
4
votes
2answers
292 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 ...
4
votes
2answers
249 views

NSPopUpButtonCell with hierarchical menu in NSTableView

I have an NSTableView of which one column contains NSPopUpButtonCells. This column is assigned to an IBOutlet. My application's controller class creates a menu in it's init and assigns it to the ...
4
votes
2answers
444 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 ...
4
votes
1answer
601 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
1answer
154 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
2k 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 ...
4
votes
1answer
1k 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
5answers
710 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
815 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 ...
3
votes
2answers
143 views

how to keep the visible content after nstableview reloaddata?

I have a subclassed nstableview whose data source array may increase, by calling reloadData: I can refresh to reflect the data updating. But after reloadData:, the tableview will always scroll to the ...
3
votes
2answers
561 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 ...
3
votes
1answer
150 views

Should I retain the returned view from makeViewWithIdentifier:owner:?

Which of the following is correct? NSTableCellView *cell = [outlineView makeViewWithIdentifier: [tableColumn identifier] owner: self]; // Do stuff… return cell; or NSTableCellView *cell = ...
3
votes
1answer
108 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 ...
3
votes
3answers
534 views

Having problems using NSMutableArray with NSTableView (Cocoa)

I'm having a problem trying to use an NSMutableArray with a NSTableView controller in my simple ToDo list application. Adding items does not work and trying to delete items gives me the error ...
3
votes
1answer
99 views

Cocoa left column menu

Several mac applications, both Apple and third party, feature a menu in the left column usually used for filtering content. Below are some examples from iPhoto, iCal and iTunes. I don't see an ...
3
votes
1answer
594 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
1answer
331 views

Table view cell, custom editor and editing frame

I am using a custom editor when editing the contents of a cell inside a Table view. From the docs I see that the custom editor has to be an NSTextView. So I put the text view in the document view, ...
3
votes
3answers
352 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
420 views

Make NSFormatter validate NSTextFieldCell continuously

In Cocoa, I have an NSOutlineView where the cells are NSTextFieldCell. The cell displays values which are strings that are formatted according to certain rules (such as floats or pairs of floats with ...
3
votes
2answers
469 views

NSArrayController not working with NSMutableDictionary for NSTableView

I am trying to display content in NSTableView using NSMutableArrayController of NSMutableDictionary records. I followed steps written below: In application delegate class, I created an ...
3
votes
1answer
411 views

Coloring NSTableView Text per row

I have a NSTableView that is displaying an array of objects I have. For each of these objects (rows) I would like to change the color of the text displayed depending on the results of a function I run ...
3
votes
2answers
745 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 ...
3
votes
1answer
372 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?
3
votes
3answers
620 views

Where to find “delegate” and “datasource” method documentation for NSTableView?

I'm looking for Apple documentation regarding the "delegate" and "datasource" methods for NSTableView. They don't appear in the NSTableView Class Reference for some reason. Any idea where I can ...
3
votes
2answers
1k views

refreshing NSTableView with new data multiple times

I have an NSMutableArray and I load my tableview from it. Now I have a Button in the UI which kinda lets the user refresh the data that goes into the array multiple times. And everytime there is new ...
3
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 ...
3
votes
2answers
2k 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, ...
2
votes
1answer
24 views

Make selected row bold in NSTableView

I try to make bold row selection style in NSTableView without any highlighting I switched highlighting off: [myTable setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleNone]; However I ...
2
votes
2answers
69 views

Padding around NSTableView

I've a following problem. There is a subclassed NSScrollView with a view based NSTableView in it. I've added a custom background to the scrollview in the -drawRect: method of subclass, and now I would ...
2
votes
2answers
116 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, ...
2
votes
1answer
276 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
108 views

View-backed NSTableView: Inserted Column Width/Margin Issues

I have a view-based NSTableView that usually has one column in it. However, at a button press, I want a new column to slide in from the left (very similar to what happens on an iPhone when you click ...
2
votes
1answer
113 views

How to show button cell (check box) title in table view, using bindings

I am trying a simple application where I have a mutable array of mutable dictionaries, such as - NSMutableDictionary *sample6 = [[NSMutableDictionary alloc] ...
2
votes
1answer
69 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
1answer
74 views

Moving array controller initialization from nib to code breaks table view bindings

My window controller subclass is the nib's owner. I instantiate my array controller, in code, in my document subclass. Both the document and window controller use it in code. I bind table columns ...
2
votes
1answer
88 views

NSTableView hit tab to jump from row to row while editing

I've got an NSTableView. While editing, if I hit tab it automatically jumps me to the next column. This is fantastic, but when I'm editing the field in the last column and I hit tab, I'd like focus to ...
2
votes
0answers
68 views

How to make NSTableView transparent?

I want to make transparent NSTableView. I am using WindowController class here. I was trying this: - (void)windowDidLoad { [super windowDidLoad]; [[self enclosingScrollView] ...
2
votes
2answers
335 views

Binding NSOutlineView's selection index paths

I have a custom <NSOutlineViewDataSource>, for which I would its NSOutlineView to update a selectionIndexPaths property. I can't get bind:toObject:withKeyPath:options: to actually bind properly. ...
2
votes
1answer
118 views

Programmatically changing width or height not working for Mac app

I have a very strange issue. I need to programmatically increase my TableView height. But programmatic frame change in terms of width or height isn't been aplied. Is there some other way of changing ...
2
votes
1answer
83 views

Is there an intelligent way to handle view swapping/reusing in an NSScrollView?

Background: I'm building a view-based NSTableView-esque control in Cocoa/Objective-C that offers the ease of use of a UITableView in terms of being able to layout a view in Interface Builder, rather ...
2
votes
2answers
223 views

set NSOutlineView's selection programmatically (and get NSTableView's selection)

I want to set my OutlineView's selection programmatically in another class. I'm able to acces the instance of NSOutlineView by [[appDelegate outlineViewController] outlineView]. The idea behind ...

1 2 3 4 5 11