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

3
votes
0answers
183 views

Top padding in NSTableView Cell

I want to add some space from top in NSTextFieldCell, I have searched , i found there is way with subclassing. But by this way my touch event for table doesn't work. if i use TextFieldCell's touch ...
3
votes
0answers
448 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
0answers
106 views

NSTableView's frame inside a NSClipView/NSScrollView using auto layout

I'm trying to create a NSTableView inside a NSScrollView (the standard configuration, that is) in code, using auto layout. I can't figure out how to make this work. Here's my loadView: - ...
2
votes
0answers
276 views

How to make a NSTableView with dynamic number of columns and binding in Cocoa /Xcode?

Sorry, I know this is a bit complicated question . Life is easy when I want to make a NSTableview object on screen with fixed number of columns. I just make a data binding to each column and simply ...
2
votes
0answers
116 views

NSTableView inside a NSSplitView: how to snap the divider on the table view rows boundaries

I have two NSTableViews inside a NSSplitView. There are two problems: 1/ the vertical scrolling in the NSTableView's parent (NSScrollView) is not constrained to multiples of the NSTableView row ...
2
votes
0answers
279 views

Drawing an NSTableView's background outside of its bounds

I'm having a problem since Lion introduced elastic scrolling (pictured below). When you scroll my table view (cell-based, with alternating row colors) beyond its bounds, the background doesn't draw. ...
2
votes
0answers
206 views

NSTextField's mouse-over cursor in NSTableView

NSTextField shows an I-Beam cursor when the mouse enters and starts editing on a single click. However, when placed in a NSTableCellView in a view based NSTableView the text field only responds on ...
2
votes
0answers
145 views

Unsupported Configuration Multiple Objects Using Identifier “” (Identifiers must be unique)

I have just started using array controllers so my experience with them is very limited. I am getting this warning in XCode 4.1: Unsupported Configuration Multiple Objects Using Identifier "" ...
2
votes
0answers
474 views

Updating Checkboxes In NSTableView With A “Select All” Checkbox

I've been searching, reading, trying different approaches, etc. for the last couple weeks trying to solve this issue, but no luck... Any help is appreciated. I have an NSTableView which uses my ...
2
votes
0answers
309 views

cocoa: drag files from my app (file paths contained in NSTableView) to other app (finder, mail, etc)

My app has an array of file paths contained in a subclass of NSTableView, I would like to be able to drag those files (and folders) from my app to other applications. I followed this article: ...
2
votes
0answers
341 views

How to auto-select next row after deleting current row by core data context?

I am using Core Data to manage objects and using a NSTableView to display those objects. The table columns are binded to objects' properties through a NSArrayController. When users click the delete ...
2
votes
0answers
113 views

how to copy rows from NSTableView

I have one NSTableView, Which displays just the row of numbers. I just want to copy those numbers using (cmd+copy) or right click copy. How can I achieve this feature in NSTableViews.
1
vote
0answers
23 views

How to set color of more than one cell in NSTableView

I want to set color of multiple cells choosing from a color well. When I move to another cell,previous colors of the cells should be retained just like the excel features. How can I do that? Inside - ...
1
vote
0answers
29 views

Pop up Button in view based NSTableView

I'm trying to use a popup button within a view based NSTableView, i would like to populate the values for the popup with the array controller "Sectors". I can get this working fine if the popup is ...
1
vote
0answers
41 views

Customize NSOutlineView row editing

I' ve a NSOutlineView configured as SourceList. When I double click on a row this become editable and I want to modify the apparence of that TextField (or NSTextView?). Anyone know how to do that? ...
1
vote
0answers
50 views

View Based Table View Within a View Based Table View

I'm looking to create a Mac App in which you have a Table View within a Table View. I used a View Based Table View and inside it's cellView, I've placed another Table View. So far, so good. I run the ...
1
vote
0answers
20 views

How to place an NSButton over an NSTableView

1) No table behind button 2) Table loaded 3) After scrolling If I place a button over an NSTableView I get artifacts being left behind after scrolling. Does anyone know how to fix this? My ...
1
vote
0answers
25 views

Use a bound NSTableView to create / delete reflexive relationships

In my Core Data application, I have a single "Person" entity with one attribute ("name") and one relationship "persons", which is in many-to-many relation with Person (reflexive relation). My idea ...
1
vote
0answers
96 views

NSTableView group row text field selection

I want to make a custom text selection in my table view. I found this awesome answer on how to set the colors, fonts, etc. of the cells: http://stackoverflow.com/a/9596390/1320374 However, there is ...
1
vote
0answers
117 views

NSTableView makeViewWithIdentifier method

I am using a view based NSTableView and implemented the - (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row method. My first line is: ...
1
vote
0answers
144 views

Using Cocoa Auto-Layout inside a view based NSTableView

My goal is to create a table view that shows short, but variable length and multi-line, messages with a picture (like a list of tweets for example). I have decided to try using Auto-Layout for the ...
1
vote
0answers
29 views

NSTableView will not compress

I'm seeing kind of a weird bug with NSTableView/NSOutlineView and auto layout. When I add an NSOutlineView to my nib and run the app, it will get bigger as expected from the given constraints, but it ...
1
vote
0answers
25 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.
1
vote
0answers
63 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 ...
1
vote
0answers
99 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 ...
1
vote
0answers
120 views

Drawing a line above first NSTableCellView

How can I draw a single line above my NSTableCellView? I understand that on iOS I might use a section header but I'd rather not use something like NoodleKit just for the dark line. Some ...
1
vote
0answers
40 views

How to set the focus a new record/field

When I add a new record to a Table view, it shows like this: How can I get the field ready for input so that it is highlighted and looks like this:
1
vote
0answers
59 views

NSTableView and sticky vertical columns

I need help about the best way to achieve the UI described below. I have a NSTableView with two columns as show in image, the tableview has no headers by design I want to scroll vertically both ...
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 ...
1
vote
0answers
87 views

Calling makeViewWithIdentifier:owner: causes ARC to re-create ivar

I'm writing a sandboxed ARC app with a view-based NSTableView that accepts dragged-and-dropped files (NSURLs). I ran into some significant strangeness in the following NSTableViewDelegate method: - ...
1
vote
0answers
74 views

Uneven NSTableCellView Focus Ring

I'm working on a small app that uses a view-based NSTableView to display contents. I'm using an NSTableCellView subclass as the contents for each cell, and I'm having a problem where the ...
1
vote
0answers
139 views

NSTableCellView subclass for disclosure button like in Console.app

In my NSTableView, I'd like to have cells like Console.app: with a disclosure triangle button on left to expand the line if text is truncated. Someone advised me to subclass NSTableCellView, but ...
1
vote
0answers
141 views

Get row of NSPopUpButton in view based NSTableView

I have a view based table view with one row containing NSPopupButtons. When the user changes the popUpButton I need to get get the table row in which this popUpButton is contained. I first expected ...
1
vote
0answers
75 views

NSButtonCell when clicked disable other tablecolumn NSButtonCell

I have a NSTableView with two columns; A and B. In column A and B there is a NSButtonCell (checkbox). When I check the NSButtonCell checkbox in column A (value = 1) the NSButtonCell checkbox in ...
1
vote
0answers
251 views

Hover effect issue in NSTableView

I have a view based NSTableView in my application and I have added the hovering effect for the rows using the implementation in HoverTableDemo. I can get the hovering effect when the mouse is over a ...
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 ...
1
vote
0answers
184 views

NSTableView steals -mouseUp: from mouse drag sequence started inside an NSView sibling

NSView A contains an NSTableView (in an NSScrollView), a child NSView B, and listens to mouse events by implementing -mouseDown/Dragged/Up:. NSView B implements neither of these methods, so the ...
1
vote
0answers
295 views

How to right set height of NSTableCellView with NSTextField?

Greets! I have a View-based NSTableView with Custom View as a cell (NSTableCellView class). There is NSTextField inside custom cell. I need to display 3 lines of text inside NSTextField and after ...
1
vote
0answers
81 views

NSArray coming back as null when called from NSNotificationCenter

I have an NSMutableArray being saved with NSUserDefaults, when appLaunched is called the array returns null but when called by any other function it returns what is in the array. Anybody know what's ...
1
vote
0answers
106 views

How to redraw NSTableView(NSScrollView) focusring?

What function I need to override to draw custom focus ring around NSTableView(or I need to subclass NSScrollView what contains table)? May be there are some examples of custom focus ring drawing?
1
vote
0answers
150 views

How can an NSCell detect the model key path it's bound to?

Imagine the following: You have an NSTableView with multiple columns. Each NSTableColumn is bound to the same NSArrayController (we'll call it myArrayController). This array controller holds many ...
1
vote
0answers
249 views

NSTableView, NSArrayController, CoreData - Footer View to refresh list

I have an NSTableView bound to an NSArrayController which fetches some entries from core data. I would like to have a custom view cell in the bottom of that NSTableView so that when the user scrolls ...
1
vote
0answers
183 views

Using a different view in editing mode in a view based NSTableView

I have a NSTableView with a single NSTableCellView column that let's say, has an icon, name and an optional date. When you edit a row, I want to replace the whole view with a simple NSTextField, and ...
1
vote
0answers
174 views

Keep NSArrayController in sync with (sorted) NSTableView

guys! I have a NSTableView which content is bound to a NSArrayController. Everything works perfectly until I sort the table clicking on the header... then the table's selection indexes can't be used ...
1
vote
0answers
78 views

Show in NSTableView, HTML table tag contents

I'm working in a project and I need to represent table contents of a webpage in a NSTableView. I tried with an NSXMLParser but it only works fine with XML code, cause it's more specific with the ...
1
vote
0answers
231 views

Best way to populate an NSTableView with an Image column and some Text columns- MonoMac c#

I'm trying to populate an NSTableView with an Image column and some text columns. At the moment I have populated a purely text columns NSTableView, using the method found in the NSTableView sample in ...
1
vote
0answers
226 views

Custom NSTextField in table view: how do I know if the row is selected to change the background color?

I have view-based NSTableView with custom NSTextField subclass instances to draw the row labels. Depending on if a row is selected (highlighted) I want to change the background color of my custom ...
1
vote
0answers
132 views

How to add table column with animation in NSTableView?

Is there a way to add a column to an NSTableView with an animation?
1
vote
0answers
158 views

Enabling empty selection on view-based NSTableViews

I've setup a view-based NSTableView using bindings and everything is working accordingly. However, I'm having issues when it comes to empty selections. I've bound my NSTableView's Content and ...
1
vote
0answers
150 views

In Cocoa, how can I force fixed-width character spacing on text in a proportional font?

In Cocoa on Mac OS X, I want to create an NSTableView where one column contains Ethernet hardware MAC addresses, and I want the characters of the MAC address in each row to all line up with the ...

1 2 3 4 5 7