Tagged Questions

The tag has no wiki summary.

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 ...
5
votes
2answers
3k views

NSButtonCell inside custom NSCell

in my cocoa application, I need a custom NSCell for an NSTableView. This NSCell subclass contains a custom NSButtonCell for handling a click (and two or three NSTextFieldCells for textual contents). ...
4
votes
2answers
290 views

NSTextFieldCell with Multiple Lines

I need to show an NSTextFieldCell with multiple lines with different format on each line. Something like this: Line 1: Title Line 2: Description I subclassed NSTextFieldCell but I don't know how ...
4
votes
3answers
778 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
182 views

Animation on NSCell

I'm trying to animate some of the cells in my NSOutlineView. I need to animate an icon to rotate as the iTunes syncing icon next to the device, on the left panel. I'm not really experienced in the ...
3
votes
1answer
319 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 ...
3
votes
1answer
445 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
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 ...
2
votes
1answer
111 views

Change direction of disclosure triangle

How can I change the direction of the disclosure triangle programmatically? In Interface Builder it's possible by changing the value "Control -> Layout" from "Left to Right" or "Right to Left". I ...
2
votes
1answer
1k 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 ...
2
votes
2answers
296 views

Binding single NSCell to multiple values

I've already killed a day on this subject and still got no idea on how could this be done in a correct way. I'm using NSOutlineView to display filesystem hierarchy. For each row in the first column I ...
2
votes
1answer
146 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 ...
2
votes
1answer
701 views

Draw shadow under NSImage

Currently I'm drawing an NSImage in a custom NSCell like so: - (void)drawInteriorWithFrame:(NSRect)theCellFrame inView:(NSView *)theControlView { // roundedCornerImage creates a new NSImage with ...
1
vote
1answer
272 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 ...
1
vote
2answers
97 views

NSCell with divisions

I want to know if there is a way of drawing an NSCell like the following sample. The idea is to fit in the same column, 3 rows, the first one with enough space for a Title, and the rest with 2 ...
1
vote
0answers
92 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 ...
1
vote
1answer
101 views

Core Animation causing partial Source List focus ring

I'm using a slightly modified ImageAndTextCell from one of Apple's tutorials in a custom NSOutlineView. For those unfamiliar with it, it's an NSTextFieldCell subclass that draws an image to the left ...
1
vote
0answers
119 views

Cocoa Bindings and Custom NSCell properties

I have a problem regarding subclassed NSCells (Check Box Cells). I want them to have a title and a subtitle next to the checkmark (so I created NSString properties for these). Their values shall be ...
1
vote
2answers
224 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
81 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, ...
1
vote
0answers
213 views

hitTest doesn't get called in NSCell subclass

I'm working on a subclass of NSCell for my project. This subclass has, in some situation a NSButtonCell drawn on its view, with this : - (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView ...
1
vote
3answers
694 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 ...
1
vote
3answers
760 views

Cocoa: how to implement a custom NSView with an editable text area?

What's the minimum implementation needed to make a custom NSView with an editable text area? I assume NSTextFieldCell can be used for this. I've succeeded in drawing the cell in the view (which is ...
1
vote
1answer
1k 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 ...
0
votes
0answers
44 views

NSImage bizarre drawing

I have an NSCell and I need to draw an image in its background. For some reason, the image is not being drawn as it's supposed to be. This is the image I want to draw: And this is how it's being ...
0
votes
0answers
46 views

NSOutlineView, cells and checkboxes

I have an NSOutlineView with one table column (want to keep it that way for design reasons) and a custom NSCell to draw the rows. The custom NSCell is a subclass of NSTextFieldCell and contains an ...
0
votes
0answers
88 views

Changing NSCell background color after init?

I have a custom cell class which inherits from NSTextFieldCell (which in turn inherits from NSCell). I override the initTextCell: method and in there I change the cell's background color: [self ...
0
votes
2answers
42 views

Getting the column and row of an NSCell in an NSMatrix in Cocoa

Given an NSMatrix and an NSCell is there a quick way to query the matrix to know at which row and column in the matrix the cell is placed. I would like to know this upon receiving action messages from ...
0
votes
1answer
56 views

TableViewCell doesn't update correctly

I have this tableviewcell.m to configure my cells. It is configuring the text and information correctly but I just can't get it to update the color according to some other information. Here's the ...
0
votes
0answers
24 views

Act on user entering an NSCell in edit mode

For a date cell I want to display an NSPopOver when a user enters that cell (be it by double clicking, tabbing to it, etc). Is there any notification I can respond to that is sent on entering? My ...
0
votes
2answers
106 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
0answers
57 views

Custom NSActionCell with: NSStepperCell + NSTextFieldCell. Mouse events on cell not propagated to stepper?

I'm dealing with an issue that is driving me crazy. I have an NSTableView with columns. One of them with my custom cell: celaStepper * celastepper = [[celaStepper alloc] init]; [column ...
0
votes
0answers
37 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
3answers
95 views

My Textfield UITableViewCell and my textfieldShouldReturn are not seeing eye to eye

After selecting a cell and writing something in it, I would like to hit the return/next button on the keyboard and simply move to the next cell, that's what I am trying to achieve. But after placing a ...
0
votes
1answer
56 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 ...
0
votes
1answer
85 views

Retrieving cell contents from NSOutlineView

I have an odd issue cropping up with an NSOutlineView. The view is essentially a list of apps with associated files as children. I populate the view by hand in it's data source and all of that works ...
0
votes
1answer
251 views

NSAttributedString on an NSCell

I'm filling an NSOutlineView with data that I format using NSAttributedString. So far I have formatted the text font, size and color. My problem is that the foreground color doesn't change when the ...
0
votes
0answers
170 views

Subclass NSCell with image view

I need to create an NSCell that shows an image view. I'm not working with NSImageCell because It contains an NSImage and I need an NSImageView so I can animate the image. Right now, I'm trying to ...
0
votes
2answers
310 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
926 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
371 views

subclassing NSCell - [self objectValue] with drawInteriorWithFrame:inView: returns strange results

I have an NSTableView in my main window NIB file that uses a dynamically created datasource - that is, the array of dictionary's is created dynamically when required - in one of my classes. So it is ...
0
votes
0answers
148 views

custom NSCell's views

I've just created a NSMatrix with custom NSCells in it.. Each custom cell has two NSTextFields, which I added to the controlView using the drawInteriorWithFrame inView method. Now the problem is that ...
0
votes
1answer
114 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
157 views

Updating Core Data from custom NSCell

I have a custom NSCell (actually subclassing NSTextFieldCell), which is used both in a standalone editor, and in an NSTableColumn (bound to Core Data through NSArrayController). When the user changes ...
0
votes
1answer
127 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 ...
0
votes
1answer
408 views

NSOutlineView Changing group row color

In my NSOutlineview i am using custom cell which is subclassed from NSTextFieldCell, I need to draw different color for group row and for normal row, when its selected, To do so, i have done ...
0
votes
1answer
806 views

NSCell Custom Highlight

I'm trying to subclass NSCell to draw a custom background highlight. The documentation seems to suggest that the overriding highlight:withFrame:inView: should allow me to do this but the method is ...
0
votes
2answers
434 views

NSOutlineView Changing disclosure Image

I my outline view, i am adding Custom cell, To drawing custom cell, i am referring example code , present in the Cocoa documentation http://www.martinkahr.com/2007/05/04/nscell-image-and-text-sample/ ...
0
votes
1answer
285 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 ? ...
0
votes
3answers
223 views

Select text (content) instead of cell with NSCell

I'm currently working in a project with a NSOutlineView... I use, of course, NSCell(s) and I need to let the ability to select text inside the cell... Or at least... prevent the selection (and ...

1 2