Tagged Questions
0
votes
0answers
59 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 ...
0
votes
1answer
68 views
Editing custom NSCell
I'm in the process of creating a custom NSCell, which will work like the shortcut capture cells in XCode, and trying to figure out how to intercept edit requests (for instance, when a user ...
1
vote
2answers
264 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
0answers
60 views
Create NSCell on mouse click
I have an NSCellButton (in my case a number of checkboxes in an NSTableView) and I want to be able to change the state of the checkboxes when a mouse is clicked in the checkbox.
I can do this in the ...
0
votes
0answers
173 views
Implementing custom table view with add delete button in each row
In XCode 4+, the plist file is displayed as shown in below screen-shot:
Here each cell in Keycolumn displays +/- buttons, if mouse is over that cell or if that row is selected.
To display +/- ...
0
votes
1answer
165 views
Expand an NSCell when multiples lines
I'd like to have the same behaviour that Console.app in 10.7.
Lines that are truncated come with a disclosure triangle
A click on the triangle / a double click on the line / press on "Right Array" ...
0
votes
1answer
551 views
NSButton gets drawn inside custom NSCell, but is not actually clickable
I have a NSTableView which contains my custom NSCell subclass, IconCell.
The IconCell contains three elements : an image, text, and a button.
Here's a simplified version of my drawing code ...
0
votes
2answers
477 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
69 views
Marking rows in NSTableView as dirty
I subclassed NSTextFieldCell to do custom drawing and highlighting. I am essentially making a table with cells similar to the one found in Lion Mail, but my code is targeting Snow Leopard. The problem ...
0
votes
1answer
144 views
reset image in tableView imageCell is blurry
i'm trying to show an 'info' icon during a cursor 'rollover' on an NSTableView cell. i'm getting a copy of the cell's image, drawing the 'info' icon on it, and telling the cell to setImage with this ...
1
vote
0answers
163 views
NSSliderCell and NSButtonCell won't change values
I have an NSTableView with an NSTableColumn whose value is bound to that of an NSArrayController. I am using a delegate to give which rows have which cell types. When, in the .nib file, the column's ...
0
votes
2answers
725 views
NSView in NSCell
I've read a lot about this but i can't get it to work, i have a custom NSCell with this code
#import "ServiceTableCell.h"
@implementation ServiceTableCell
-(void)drawWithFrame:(NSRect)cellFrame ...
0
votes
2answers
2k views
How to setup a NSTableView with a custom cell using a subview
I am trying to setup a NSTableView with a custom cell using an ArrayController and Bindings. To accomplish this I added a subview to the custom cell. The data connection seems to work somewhat. ...
0
votes
1answer
248 views
How to add an NSColorWell to an NSTableView?
Is it possible to wrap an NSColorWell as an NSCell so I can add it to an NSTableView? If not, is there another solution to the problem?
0
votes
1answer
209 views
NSCell not properly displayed
I have an custom NSCell in an NSTableView and it doesn't display correctly. The table view has the right number of items in it but they're empty except for the first one. The first one shows the cell ...
1
vote
2answers
424 views
NSTableView with more than one UI element in NSCell (like Transmission)
How would I make an NSCell with more than one UI element in it and display it in an NSTableView? For NSCells with a single value I could implement tableView:objectValueForTableColumn:row: but I don't ...
1
vote
0answers
119 views
NSCell won't remove from NSTableView
I have an NSTableView filled with custom NSCells. Most include text, but one contains an NSButton. When I reduce the amount of objects in my data source, call -noteNumberOfRowsChanged and -reloadData, ...
0
votes
1answer
562 views
NSOutlineView Control HighLight and indentation
In my Outline view, i am using CustomCell, which is nothing but took the code from Cocoa ImageTextCell RefrenceCode with some modification,
Is it possible to change the highlight color for a cell ?
...
2
votes
1answer
2k views
What is the easiest way to custom NSTableView cell?
I'm an iOS developer. I recently started my Mac project, but I found that unlike UITableViewCell, which is a subclass of UIView, the cell of NSTableView is NSCell, and I even can't create it in IB. I ...
0
votes
1answer
746 views
Transparent NSTableView
I want to customize my NSTableView. My overall requirements are like this:
Each row will have one image and some text; images and text could be different.
Some cells might not have an image.
Row ...
2
votes
4answers
2k views
NSTableView Drag and Drop not working
I'm trying to set up very basic drag and drop for my NSTableView. The table view has a single column (with a custom cell). The column is bound to an NSArrayController, and the array controller's ...
0
votes
2answers
503 views
How can I display an Image in an NSTableView?
I have an NSTableView that is populating with my data source.
My data model has a URL to an image.
I would like to display an image next to some text in every cell of my NSTableView. Basically ...
0
votes
1answer
869 views
Cocoa custom cell in NSTableView: NSCell subclassing leak problem
I made a subclass of NSCell and overrided the setObjectValue function to achieve my need.Things are fine except there is a leak problem. The setObjectValue function of NSCell seems wont release its ...
2
votes
1answer
255 views
Problem retrieving NSCell data via [NSTableColumn dataCellForRow]
I am trying to retrieve a specific NSCell data from an NSTableView through [NSTableColumn dataCellForRow] but every time it shows different value for same row and same column. The data source remains ...
3
votes
1answer
464 views
Links in NSTableView NSCell
I have been reading and experimenting with allowing links in a custom drawn NSCell for the last few days and have basically got nothing usable, there's always issues with each approach.
Does anyone ...
0
votes
1answer
350 views
How can i show an NSImage in front of a NSTextFieldCell in a NSTableView
I display a file list and want to show the file icon and editable file name in a NSTableColumn.
Also what would be the best way to display an additional NSImage immediately behind the file name (i ...
0
votes
1answer
230 views
NSTableView - programatic display of values in a long table view
Ok, so I am creating an iTunes overlay for a client. My question is, with a given index, how am I able to move the displayed cells/cells in a row to a specific entry in the table view, ...
1
vote
3answers
2k views
Getting Custom NSCell with NSButtonCell instance to handle mouse click/mouse events
OK I'm really stumped on this one. I want to make a checkbox with a
NSTextFieldCell combined together. It's important that the checkbox
goes ON if the mouse hits the box, NOT the text. I've ...
3
votes
1answer
609 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 ...
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 ...
1
vote
1answer
2k views
How to set background color of cell with NSButtoncell type in NSTableView?
This is my table view delegate:
- (void)tableView:(NSTableView *)tableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)tableColumn row:(int)row
{
id theRecord;
NSMutableString ...
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 ...
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 ...