Tagged Questions
0
votes
1answer
30 views
How to insert the value in selected cell only of nstableview
I am trying to insert value in a particular cell only, for example how to insert value in (2,3) 2nd row and 3rd column. i know how to insert value in a table but i don't know how to insert value in ...
0
votes
2answers
91 views
Custom background colors for NSTableCellView
I am trying to create a custom NSTableCellView. I subclassed NSTableCellView and I need to have a custom background color and highlight/selection color. Is there a way to do this?
1
vote
2answers
237 views
context menu based on NSTableViewCell
i would like to place a context menu onto a NSTableView. this part is done. what i would liek to do is to show different menu entries based on the content of the right clicked cell, and do NOT show ...
0
votes
1answer
90 views
Cocoa: NSTableView DataSource doesn't set title
I am trying to set text value of cell:
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
if ([[[tableColumn headerCell] ...
1
vote
0answers
119 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: ...
0
votes
0answers
12 views
How can I store the scroll information for an NSTextView that is a part of a custom NSTableCellView?
In Interface Builder I have a view containing an scrollable view-based NSTableView which uses a custom view for its rows, and the custom view contains an NSTextView that is also scrollable.
This is ...
1
vote
2answers
80 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 ...
0
votes
0answers
61 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 ...
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 ...
0
votes
0answers
151 views
NSTableView tableViewColumnDidResize has incorrect frame size for NSTableCellView
Why does tableViewColumnDidResize get called twice on each resize event and why does the second call report incorrect frame sizes?
I'm trying to use a single-column, view-based NSTableView where each ...
1
vote
0answers
75 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 ...
0
votes
1answer
155 views
NStableView Cocoa
I populated my NStableView with tableView Controller and it's working fine. I only want to know why every time I am getting the data (Presented in table Cell) whenever the user hovers on a particular ...
1
vote
1answer
147 views
How to create iOs like looking NSTableView?
I want to create a good looking NSTableView with an iOs "feel" to it. Every NSTableView I create looks like it's from the late-90s and feels horrible in my opinion.
I know that there are some iOs ...
0
votes
1answer
211 views
NSTableView view based 'Image & Text Table Cell View' not recognizing my custom NSImageView subclass
First i changed my NSTableView to view based and created an
IBOutlet of my NSTableView.
Then i dragged the Image & Text Table Cell View to it.
After that i changed the NSImageView that's inside ...
0
votes
2answers
353 views
Custom NSTableCellView labels not changing text color when selected
I have a custom NSTableCellView with 3 textfields, 1 that came along and 2 others that i created myself. Here's the problem:
The textfields' text color stays the same even when i click on the row. ...
0
votes
0answers
129 views
Drag an item from NSTableView to a NSView
I have an NSTableView containing some custom NSTableCellView , which contains an image and two textfields
Now, I want to drag an item from NSTableCellView (that corresponds to one object in my array ...
0
votes
2answers
519 views
Adding NSTableView to NSView Programmatically
I am having a bit of trouble adding a NSTableView to an NSView through code. The view Is the first view of an NSSplitView. My Pointers are set up right im sure of it because I can add a NSButton to ...
1
vote
2answers
275 views
NSCell redrawing issues
I'm creating a NSCell subclass that draws some objects directly onto the view (using drawInRect:fromRect:operation:fraction:respectFlipped:hints:) and also draws an NSButton instance simply using ...
0
votes
3answers
309 views
label color for selected row in NSTableview
I subclassed NSTableRowView in view-based NSTableView to change the selection color to a lighter blue instead of the default one.
Unfortunately when I select the row the color of the labels and ...
0
votes
2answers
510 views
custom NSTableViewCell
I custom NSTableView just like what I do in UITableView. I implement the datasource and delegate. In the code, I do like this:
- (NSView *)tableView:(NSTableView *)tableView ...
1
vote
2answers
123 views
Set NSTableViewCell edit
NSTableViewCell contents one NSImageCell and one NSTextFieldCell, When add a new cell to NSTableView, method
[tableView editColumn:0 row:100 withEvent:nil select:YES];
make NSImageCell as editing.
...
0
votes
0answers
165 views
How customize NSOutlineView right-click context menu row selection
I have a contextual menu appears on right-click in my NSOutlineView. When it appears it selects the table row. I want to customize the selection. It's not a usual selection, rather kind of highlighted ...
-2
votes
1answer
133 views
Create two rows in NSTableView in cocoa
I have a NSTableView with one column. As we know in cocoa, Table is column base. I want to create a login screen in cocoa with the help of table view in which there are two rows, one for username and ...
0
votes
1answer
722 views
Specific tutorial on using NSViews in an NSTableView
I have been trying to work out how to use the new Lion 10.7 feature that allows you to use NSViews in NSTableViews using the apple documentation and I am struggling.
Is anyone aware of a tutorial ...
0
votes
1answer
88 views
Editing the row for duplicates using NSAlerts in NSTableView
I have a NSMutableArray which contains NSMutableDictionaries.I would like to display one string from this dictionary in a NSTableView.This string is unique among the objects.By default this has some ...
0
votes
2answers
731 views
textShouldEndEditing does not get called in NSTableView
When a user adds a new managed object, it shows up in a table, which scrolls down to the new entry, and the name of the new object (a default value) goes into editing mode.
I need to check if the ...
1
vote
2answers
965 views
NSButton in NSTableCellView: How to find desired objectValue?
I have a view-based NSTableView that is populated through bindings. My textFields & imageViews are bound to the NSTableCellView's objectValue's properties.
If I want to have an edit/info ...
0
votes
1answer
227 views
Hyperlinks in an view-based TableView (NSTableCellView)
I have an view-based TableView with an image and a NSTextField. I've got some links inside my NSTextField and I have tried many options (http://developer.apple.com/library/mac/#qa/qa2006/qa1487.html, ...
0
votes
1answer
878 views
Custom Cells in an NSTableView
What's the best way to populate an NSTableView with custom cells?
I always utilize Cocoa Bindings when I'm populating standard data, and I always utilize datasources when populated tables with ...
0
votes
1answer
434 views
NSTableView Delegate Called But Data not showing
i have a very strange problem with NSTableView in XCode 4.2.
I've set the datasource an delegate for the table. My table has 3 columns where each of the column has an identifier ...
1
vote
1answer
316 views
View Based Table Cells on OS X not showing data properly
So I admit to being a total noob to cocoa, so I offer a noob question. I'm probably just missing the dumb obvious somewhere but i just cant seem to get my table to populate data.
I'm following the ...
0
votes
1answer
318 views
Animating NSTableView with beginning and ending array states
I've been looking over NSTableView's moveRowAtIndex:toIndex method for animating rows in a table. It's not really helpful for sorting though from what I can tell. My interpretation of how it works ...
0
votes
1answer
113 views
How to retain the field Editor after editing the cell in a NSTableView?
Added detailed info
I have two Windows.(mainWindow and childWindow.) On the top of the mainWindow I added childwindow using WindowController using the following Code, so that the childwindow is ...
0
votes
2answers
387 views
How to programmatically initiate NSTextFieldCell editing (make it firstResponder)
I have two NSTableViews. On double clicking on the tableview1 the contents of the tableview1 will be placed in tableview2. I would like to edit the new cell in the tableview2. Tried the following ...
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 ...
0
votes
2answers
481 views
How can I create itunes/finder/mail style table view
I'd like to create the content lists in the style of the Finder window's left pane (similarly in the style Mail/iTunes/etc). Currently my NSTableView/NSOutlineView implementation looks a little basic.
...
3
votes
1answer
323 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 = ...
0
votes
2answers
476 views
Personalizing NSTableView in three ways
I'd like to use an NSTableView for displaying a list of disks to the user and I think it would be better to display them a bit differently than the normal NSTableView does. Here is an image as ...
1
vote
2answers
357 views
Simulate Tab and Shift-Tab with arrow keys in NSTableView
I want to simulate tab and shift-tab with right arrow and left arrow. I suppossed I have to subclass NSTableview and overide keydown code but I don't know how to tell the table view that has to edit a ...
0
votes
1answer
221 views
How can I determine if the mouse is over a specific view in NSTableView?
I have an NSTableView that is displaying different views for each cell. How can I determine that my mouse is over a specific view? I want to be able to hide/show certain UI pieces depending on the ...
2
votes
1answer
2k views
Vertically center NSTextFieldCell?
I have an NSTableView where I am changing the height of the rows with the following code:
- (CGFloat)tableView:(NSTableView *)tableView heightOfRow:(NSInteger)row
{
return 32;
}
The problem is, ...
1
vote
1answer
3k views
NSTableView Changing Text Color for a row
I need to change following properties for my NSTable View
1 -- Change Color:Row Color and Text Color when its selected
2 -- Change the Text Color , for each row it depends upon some input parameter, ...
0
votes
1answer
2k views
NSTableView display Image in one cell
I might be asking very simple question, but i am not able to get how to get rid of this,
the requirement is,
Table should display image and some text next to that. To do that, i have added two ...
1
vote
1answer
636 views
NSTableView transparent TableView
UI Requirement is,
1 -- Need to show a two column table, first col should display an image and 2nd col will have some text with it,
2 -- It should be transparent so it should display the NSView ...
4
votes
2answers
600 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.
3
votes
2answers
499 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, ...
1
vote
2answers
1k views
How to select one NSCell in an NSTableView?
I have a small NSTableView with a checkbox. Whenever the checkbox is not checked, I want one of the adjacent NSCells to be grayed out and inaccessible.
However, I can't figure out how to address only ...
1
vote
2answers
1k views
Problems with NSButtonCell action
For some reason the NSButtonCell for my table view is passing the wrong object as a parameter. I am trying to read the tag of the NSButtonCell after it is clicked.
Here is a simplified version of my ...
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 ...
3
votes
2answers
3k views
Cocoa: Core Data + NSTableView
I have a core data app set up, and everything is working pretty well. But there is one little problem. When I insert a new object into my entity I have it go to my NSTableViewCell, where I can edit ...

