The tag has no wiki summary.

learn more… | top users | synonyms

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
87 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
230 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
70 views

NSPopOver on mouse hover

I need to display a popover when i place the cursor on a cell of the table view. On OS X app, what is the technique to show a NSPopover when the mouse is over a NSTableViewCell? Thanks
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
118 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
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 ...
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
146 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
209 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
347 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
128 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
517 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
272 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
305 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
509 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 ...
0
votes
0answers
186 views

Changing strings in a view based NSTableView

I'd like to change the change the string that is displayed in my view based NSTableView to a lowercase string (OSX). So I implemented the following in the delegate of the tableview: - (NSView ...
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
1answer
166 views

In-place editing of text in UITableViewCell in iOS 5?

I know this question has been answered before, the answer below looks pretty good. http://stackoverflow.com/a/4124023/1098059 However, most of the answers date from before iOS 5. With the new static ...
0
votes
0answers
164 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
132 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 ...
1
vote
1answer
206 views

How to show more detail when TableView Cell is clicked?

I have a TextView and any text entered into the TextView can be saved to a TableView (or should I say NSMutableArray!). I have this working without issues. The problem I am now having is because a lot ...
0
votes
1answer
719 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 ...
2
votes
2answers
295 views

Using a round rect button as a badge with a counter

I'm using a view based NSOutlineView with two different views (both views are custom subclasses of NSTableCellView). In the top level view I display a badge with a counter. The counter indicates the ...
0
votes
1answer
87 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
730 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
960 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
876 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
431 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
317 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
112 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
386 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
479 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. ...
0
votes
1answer
149 views

Does iOS support view-based Table Views?

Does iOS support view-based tables, in addition to the classic cell-based tables? It appears this new capability is only on the Mac (OS X v 10.7). Thanks!
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 ...
0
votes
1answer
311 views

Can I put a NSDatePicker object in a cell of NSTableView?

Right now I am just using a NSTextCell with a NSDateFormatter, I just wanted to know if this was possible, perhaps by using the . Thanks in advance!
1
vote
1answer
944 views

How to create a NSTextFieldCell, that in edit mode displays a custom view instead of NSTextField?

I have a tableView, with 3 columns containing NSTextFieldCell. Everything is populated with bindings. The text of the cells of one of the column is computed and is not editable directly. For this ...
2
votes
1answer
344 views

Draw Lines Diagonally in a particular NSTableview cell

Is there a way to draw lines diagonally in NSTableview cell.Can u please post sample to do this.I am new to the Mac development.Please help me in this issue. Thanks in advance.......
0
votes
1answer
587 views

How do i navigate to another view through a button in a NSTableCell?

I have got a Button in a custom table cell, with which i want to navigate to a view. But this view has to be diffrent to the view you get, if you simply press the TableCell. Did anybody solve this ...
1
vote
2answers
355 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 ...

1 2