The NSTableCellView class of Cocoa, is a reusable container view shown for a particular cell in an NSTableView instance that uses rows for content.

learn more… | top users | synonyms

0
votes
0answers
16 views

NSTableCellView indentation and background

I have an NSOutlineView with a transparent background in which I use indentation and background images in the cells. But when the cells are indented, their background images (accomplished via ...
0
votes
1answer
55 views

NSTableView with chat bubbles

I need to create a NSTableView with chat bubbles like Messages app. Is there any sample code/tutorial that I can use. I am trying to use view based NSTableView, with custom NSTableCellView. I added a ...
0
votes
2answers
70 views

How to convert Cell-based table into View-based table in cocoa?

I'm having hard time understanding how to implement view-based table in cocoa. Right now I have working implementation of old-fashioned cell-based table. As I figured out, just dragging the ...
1
vote
1answer
53 views

Is it possible for a view-based NSTableView to draw outside the row bounds?

I have an NSTableView with 2 columns. Each column contains a different NSTableCellView subclass and in some situations I'd like to achieve an overlapping effect, so for example the top of the view in ...
0
votes
2answers
69 views

Remove NSTableCellView

How do I maunally remove a NSTableCellView (or a subclass of it) from my NSTableView? When i empty my array holding information, queue DB for new information and then reload the tables data, it only ...
1
vote
1answer
93 views

set NSButton position inside NSTableView to center programmatically

Is it possible to set the "position" value (see image below) programmatically instead of using IB? I would need to set it like the one in the image. I've been searching for a solution for a while now ...
0
votes
1answer
112 views

View-based NSOutlineView with custom selection style

I'm implementing a tool very similar to the built-in plist editor in Xcode. The only thing missing is the custom highlighting when a row is selected (see attached image). What's the proper way ...
0
votes
4answers
94 views

iOS: Xcode - How to reveal content from under a cell?

I'm trying to create an app similar to the one in the screenshot: http://imgur.com/oC1yjUc It looks like a table view with contents revealed under the cell on tap. Does anyone know how to do this. ...
1
vote
1answer
222 views

NSTableCellView and NSArrayController - Mac OSX

Is it possible to bind a NSArraycontroller with NSTableView whose cells are not text cells but nstablecellview? I'm new to cocoa programming, tried searching on this but no proper explanation on this. ...
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
1answer
177 views

How to update the visual aspects of a NSTableCellView?

I have a custom NSTableCellView with 2 NSTextFields, 1 NSProgressIndicator and 2 Buttons. I want to hide 1 button and the Progress Indicator when I reload the Table. The problem is if my NSTableView ...
0
votes
2answers
282 views

NSTableView - select row and respond to mouse events immediately [duplicate]

I have a view based NSTableView in which the cells contain a number of controls including text fields and edit fields. When a user tries to click on a control within a cell in order to, for example, ...
0
votes
1answer
145 views

resizableImageWithCapInsets inside NSTableView (view based)

i try to do resizableImageWithCapInsets (as in iOS) for mac. // right bubble NSLog(@"==================== OLD VALUES =============="); NSLog(@"size->%@",NSStringFromSize(size)); ...
1
vote
0answers
140 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 ...
0
votes
0answers
609 views

2 - Assertion failure in -[UITableView _endCellAnimationsWithContext:]

2012-11-19 13:55:32.503 Note Collector[8980:c07] * Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:878 2012-11-19 13:55:32.509 ...
0
votes
1answer
154 views

NSStepper in NSTableCellView has no effect

I’m using a regular (not subclassed) NSTableCellView in a view-based table view. It has the initial image and text field views. I added an NSStepper to the view. The text field is bound to ...
0
votes
0answers
85 views

NSTableCellView and MacOS 10.6

This question is kind of an extension of MAc application I created works perfectly fine on OSX LIon but crashes with Exception on Snow Leopeard. An application that I wrote makes rather heavy use of ...
0
votes
2answers
242 views

NSArrayController populates NSTableView but doesn't set the cell title

I have a two column NSTableView that I want to populate with entries grabbed from a CSV file. Everything works fine except the title of each of the table cells isn't set. Here's the function that is ...
1
vote
2answers
130 views

Two NSTableCellView with different sizes appearing with the same size

Here are my 2 NSTableCellViews: The 1st is bigger than the 2nd (this one is used when the user is searching the tableview and there are no results) but when i run my app the 2nd gets the size of the ...
4
votes
2answers
893 views

Custom NSTableView with custom NSTableCellView?

I would like to create an NSTableview with custom NSTableCellViews. Here is what I have right now: A nib file for the cell (view nib) called CustomCell.xib A custom class for my cell called ...
0
votes
1answer
353 views

Cocoa : Custom TableView cell?

I am not really familiar with tables, as I usually make games, but now I want to create a level builder where I need a table view with custom cells. I have created a nib file and I have subclassed ...
0
votes
1answer
118 views

change image background color when click a tableCellView

I implement a bubble chat view using method NSDrawNinePartImage in a custom view called BubbleChatImageView. A NSTextField which is a subview of BubbleChatImageView to display chat record. What I need ...
0
votes
1answer
146 views

NSProgressIndicator in NSTableCellView

I have an NSTableCellView subclass that contains an NSProgressIndicator. I have it all updating and animating properly, however it remains greyed out. I suspect this is a view loop issue. Any ...
0
votes
2answers
383 views

How to trigger an action from a NSTableCellView in view based NSTableView when using bindings

I'm facing a problem with a view-based NSTableView running on 10.8 (target is 10.7, but I think this is not relevant). I'm using an NSTableView, and I get content values for my custom NSTableCellView ...
0
votes
1answer
136 views

Can't CTRL+Drag NSButton to custom NSView header

I'd like to create a custom NSTableCellView instantiated by Interface Builder. I've set my Table Cell View class to MyTableCellView, and properly created MyTableCellView : NSTableCellView .m/.h files. ...