0
votes
1answer
18 views

initWtihFrame: method for custom textfield not being called when created in a TableCellView

So I'm trying to create a custom NSTableView by subclassing NSTableCellView and a NSTextField inside of the cellview. I'm trying to write some init code in the initWithFrame: method for the ...
0
votes
0answers
47 views

nextKeyView is not working

I have developed an application,which has one tableview and 4 textfields. When I run the app,the control is not going orderwise by giving TAB. For that I set initialResponder as tableView,then ...
0
votes
1answer
87 views

Make NSTableView active

Cocoa noob here. I've got a simple Mac app that includes an NSTextField that fetches some results and puts them into an NSTableView. I'd like to be able to press up/down while in the text field to ...
0
votes
1answer
151 views

Click under NSTextField

I'm trying to customize a NSTableView, in order to do that, I've implemented the following method: -(NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn ...
0
votes
2answers
939 views

NSTableView get elements inside selected row

I have an NSTableView of content type View Based with two columns. My objects are structured as follows: Table View Table Column Table Cell View Text Field Table Column ...
0
votes
1answer
696 views

NSTextView or NSTextField automatically resize bounds / frame?

I'm trying to use either an NSTextView or NSTextField which displays text that I am adding via textField.stringValue = [dictionary objectForKey:@"info"]; The problem is I need the bounds / frame of ...
0
votes
0answers
105 views

NSTextDidChangeNotification being called multiple times

I've got an NSTableView, NSTextField, and two NSButtons that are used to set and display the text in an array. The buttons change the array to pre-set strings, while the textfield displays and edits ...
1
vote
1answer
336 views

Give NSTextField focus -?

I currently have a tableview, with cell views which have NSTextFields inside of them. Currently, on row select, I'm sending the cell view the following message with the hope of granting the NSTextView ...
1
vote
3answers
1k views

mouseDown: in a custom NSTextField inside an NSTableView

I have a view-based NSTableView. Each view in the table has a custom text field. I'd like to fire an action when the user clicks on the text field (label) inside the table's view (imagine having a ...
0
votes
1answer
144 views

How to bind a NSTextField to a raw string while displaying another attributed string?

I'm using view-based NSTableView and would like to allow users to edit text in place. Cocoa typically has superb support for this, but I am not sure how to bind the value of NSTextField to one string ...
2
votes
2answers
2k views

NSTextField in NSTableCellView

I have a view based NSTableView with a custom NSTableCellView. This custom NSTableCellView has several labels (NSTextField). The whole UI of the NSTableCellView is built in IB. The NSTableCellView ...
0
votes
1answer
230 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, ...
1
vote
0answers
231 views

Custom NSTextField in table view: how do I know if the row is selected to change the background color?

I have view-based NSTableView with custom NSTextField subclass instances to draw the row labels. Depending on if a row is selected (highlighted) I want to change the background color of my custom ...
9
votes
3answers
2k views

Respond to mouse events in text field in view-based table view

I have text fields inside a custom view inside an NSOutlineView. Editing one of these cells requires a single click, a pause, and another single click. The first single click selects the table view ...
0
votes
1answer
90 views

Is there a way to use bindings with an editable NSSecureTextFieldCell in an NSTableView?

I have an NSTableView with several columns, one of which is set up to use an NSSecureTextFieldCell as its dataCell. I am using a properly configured NSArrayController to provide data to this table. ...
5
votes
2answers
2k views

Clickable url link in NSTextFieldCell inside NSTableView?

I have a NSAttributedString that I'm using in a NSTextFieldCell. It makes several clickable url links and puts a big NSAttributedString inside the NSTextFieldCell. Whenever I am viewing the ...