Tagged Questions
0
votes
0answers
5 views
cocoa: custom text in NSCell for NSTableView
I have problems for customizing the text in the NSCell for the NSTableView. Below is the main window:
The window has a table view which shows an icon, a title,a progress indicator and a message.As ...
0
votes
1answer
51 views
NSTablview NSTextFieldCell SetSelectable -
I was trying to make one of the nstextfieldcell unselected for a particular condition. I have attached the sample code:
-(void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell ...
1
vote
1answer
310 views
Create a complex custom nstextfieldcell
I'm trying to create a custom NSTextFieldCell for a NSTableView. I want to do something like the email listing provided by Mail (example below).
I found some references here and here, but I'm not ...
2
votes
1answer
101 views
Can't change color of column that i subclass it
I subclass my table's column to NStextFieldCell. When I want to change column's color with below given code, color doesn't change. Why?
- (void)tableView:(NSTableView *)tableView ...
0
votes
1answer
123 views
Intercepting undo while editing a cell-based table view
I'd like to intercept or disable Cmd-Z/Shift-Cmd-Z during a text editing session for a table view cell.
It's a cell-based table view with a series of columns whose values affect each other, such that ...
0
votes
1answer
183 views
Start NSTextFieldCell editing by button click
I need to start NSTextFieldCell editing after button clicked (the same behaviour if user double click on the cell)
I found a function performClick which simulates user clicking by cursor. My idea is ...
0
votes
1answer
167 views
How to see the whole string in NSTextFieldCell?
When I put a long string inside my NSTableView the text isn't displayed wholly:
I need to allow user to see the whole string (maybe with scroll or tooltip, it doesn't matter). Any suggestions?
...
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, ...
4
votes
1answer
340 views
Adjust height of NSTextFieldCell dynamically based on text
Is there any way I can adjust the height of NSTextFieldCell in an NSTableView based on the amount of text in it?
In short, I want tableView:heightOfRow: to return a value according to the text in the ...
3
votes
0answers
184 views
Top padding in NSTableView Cell
I want to add some space from top in NSTextFieldCell, I have searched , i found there is way with subclassing. But by this way my touch event for table doesn't work. if i use TextFieldCell's touch ...
1
vote
1answer
1k views
Adding an editable NSTextFieldCell to my NSTableView
I have an NSTableView which displays some information representing a custom object of mine. I am not using bindings.
Typically, I create my own NSCells to display data, but for once I'm after an ...
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. ...
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 ...