Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
577 views

NSTextField with shadow?

I'd like the NSTextFields I set up in Interface Builder to have shadows. I've implemented a way to do this which seems to work, but I'm not sure if it's the right way. What I did is subclass ...
10
votes
4answers
2k views

Is there a “right” way to have NSTextFieldCell draw vertically centered text?

I have an NSTableView with several text columns. By default, the dataCell for these columns is an instance of Apple's NSTextFieldCell class, which does all kinds of wonderful things, but it draws text ...
7
votes
3answers
2k views

NSTextFieldCell vertical alignment, solutions seem to squash the horizontal alignment

I have a NSTextFieldCell that I wish to display with middle vertical alignment. Thanks to an older question here and a blog entry I have two working solutions. However, both solutions seem to ...
4
votes
4answers
768 views

How do I set the font size in a text cell so that the string fills the cell's rect?

I have a view that contains two NSTextFieldCells. The size at which these cells are drawn is derived from the size of the view, and I want the text in each cell to be the largest that will fit in the ...
3
votes
2answers
251 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 ...
2
votes
0answers
193 views

How to customize the selected text colors of an NSTextField / NSTextView in an inactive state

I'm using an NSTextField and customizing the fieldEditor using the setupFieldEditorAttributes: method. This allows me to set custom foreground and background colors for the selected text, which is ...
2
votes
1answer
996 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 ...
1
vote
1answer
57 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 ...
1
vote
0answers
63 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
0answers
92 views

NSTextFieldCell tooltip display problem

I am displaying a NSAttributedString in a NSTextFieldCell. When the text is long then the last line is truncated and shows an ellipsis. This is fine, but what I want to do is show the complete text in ...
1
vote
1answer
232 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
1answer
141 views

How to end editing in NSTextFieldCell inside NSOutlineView after ESC key is pressed

I'm trying to get a custom NSTextFieldCell (inside a NSOutlineView) to end editing when the ESC key is pressed but cannot find any way to accomplish this. I tried to add an observer for the ...
1
vote
1answer
158 views

setScrollable not working for NSTextFieldCell

I want my each table cell to be scrollable since its editable.I am using self.nsChildTextFieldObj = [[NSTextFieldCell alloc] init]; [self.nsChildTextFieldObj ...
1
vote
1answer
434 views

Cocoa : Multiline NSTextFieldCell in a NSOutlineView

I am developing a Cocoa application. I have a NSOutlineView displaying custom cells ( cells inherits from NSTextFieldCell). The problem I am facing to is that the cell text is only displayed on one ...
1
vote
1answer
342 views

NSOutlineView with badge of unread messages like Mail.app

I'm trying to create a user interface similar to the iTunes source list or the Mail.app mailbox list where a badge with a number (e.g. unread emails, new podcasts) is shown at the right hand side of ...
1
vote
1answer
337 views

I need to do some advanced text styling of NSTextFieldCell

First i need some background color on the text only. Like the headers in the F-Script Browser Setting [cell setBackgroundColor: [NSColor blueColor]]; colors the whole cell space not only the text. ...
1
vote
2answers
328 views

Rounded NSTextFieldCell like iCal

I'm trying to draw an NSTextFieldCell subclass that looks like the rounded event item normal table in iCal. Based on this question, I've got the following code in my subclass: - ...
1
vote
3answers
724 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 ...
0
votes
0answers
8 views

Forcing enter on last textfield entry

I have created an NScollectionView which uses an NSCollectionItem to populate the main view. Im my collectionItem I have a grid of 2 NSTextfields. If the user enters strings into the textFields of one ...
0
votes
0answers
14 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, ...
0
votes
0answers
26 views

NSTableView auto expand last column

I have an NSTableView with three columns. The last column is a file system path and I would like to to be able to auto expand to ensure the full text is always visible. I have set the 'column sizing' ...
0
votes
0answers
9 views

Vertically expanding fieldEditor for an NSTextFieldCell

NSWindows have a "field editor" associated with them, which is an NSText that appears in the same place as a NSTextField or NSTextFieldCell when the user focuses on the aforementioned control. Field ...
0
votes
0answers
72 views

Cocoa NSTextField line spacing

I'm struggling with a very simple problem, I've several NSTextField ( I can't use NSTextView right now) and I need to change the line spacing of the displayed text. What can I do to reduce row height ...
0
votes
1answer
41 views

NSTableView + NSTextFieldCell dynamic row size

I want to display a string inside a tableview that can be ( max ) 4000 characters long. I have tried using NSAttributedString to find out the row height for the NSTextFieldCell, but I always fall a ...
0
votes
0answers
64 views

subclassing nstextfieldcell macruby

i'd appreciate some help on this. I can't figure out if it's a cocoa, Xcode or macruby thing: i' ve subclassed nstextfieldcell to draw icons and different texts in several columns of several ...
0
votes
0answers
104 views

Custom NSTextFieldCell, rounded corners

I am trying to create my own text field, i have so far made a subclass of NSTextFieldCell, then i ahve made the following code - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView { ...
0
votes
0answers
98 views

NSTextField/NSTextFieldCell subclassing

I'm trying to create some kind of address bar that I'll integrate in a toolbar. I've created two subclasses of NSTextField and NSTextFieldCell that are respectively AddressBar and AddressBarCell. As ...
0
votes
1answer
439 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
0answers
49 views

NSOutlineView Text Truncation

I have an NSOutlineView that draws numbered badges (similar to iTunes) to the right of each NSTextFieldCell using a custom class which calls drawWithFrame:inView: — everything draws correctly, but I ...
0
votes
2answers
851 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
0answers
197 views

Display variable row height of table only during live display?

Hello to the members and developers. I have a question for your expertise, as I am not an experienced programmer... I load (not in boot but at button action) my class with a window that contains a ...
0
votes
0answers
74 views

NSTextFieldCell permanent edit

I would like to know: is it possible to have a NSOutlineView with a NSTextFieldCell that provides always a TextView? It would be something like "permanent edit" with all fields of the outline view. I ...
0
votes
1answer
463 views

How to access an NSNumberFormatter in a text field cell?

In XCode 3.2.x's Interface Builder this was simple enough, selecting the text cell displayed a small icon for the formatter that could be selected to configure the formatter in the attributes pane. ...
0
votes
2answers
612 views

Changing NSTextFieldCell background color on selection

I'm trying to change the background color of a NSTextFieldCell when the cell is selected. This is the code: - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView { [super ...
0
votes
1answer
310 views

How to call NSCell's fieldEditorForView: to assign custom field editor

I have an NSTextView, which I want to use as the field editor of an NSTextField. Since there will be other NSTextFields in the view that do not use a custom field editor, it seems I should use ...
0
votes
1answer
176 views

Text disappears in subclass of NSTextFieldCell

I've spent many hours trying to figure this one out with no luck. Someone had a similar problem on the Apple mailing lists a while ago and no one answered. Basically, it comes down to this: I've ...
0
votes
1answer
383 views

Multiple Lines in NSTextFieldCell

How can I have multiple lines in my NSTextFieldCell in my NSTableView? By this I mean have multiple lines of data: Ex Stack Overflow www.stackoverflow.com turns into this: Stack Overflow ...
0
votes
1answer
310 views

NSTextFieldCell or just NSCell with vertical text (and colored tinting)

I'm struggling with trying to find an elegant way of displaying the column headers for a table view in a vertical fashion (rotated 90 deg counter clockwise from traditional). I'm not married to doing ...
0
votes
2answers
215 views

How do I turn off bullets in NSSecureTextField?

I have a password dialog that uses NSSecureTextField and I want to include a "Show password" checkbox so I can show the password being typed in clear text.
0
votes
1answer
525 views

using a custom nstextfieldcell in an nstextfield

I have a custom nstextfieldcell. I thought I could drag a textfield to a xib and click on it's cell, then change the cell's class to my custom class.That doesn't work. Also, I thought I could drag ...
0
votes
1answer
555 views

Problems faced while customizing NSTextFieldCell

I am trying to make cells in an outline view just like we have for users in Skype's message window. For this I created a custom class: IconNameCell.h @interface IconNameCell : NSTextFieldCell ...
0
votes
1answer
557 views

Drawing a rounded cornered NSTextFieldCell

My code for my NSTextFieldCell is: - (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView { // Drawing code here. NSGradient *gradient = [[NSGradient alloc] ...
0
votes
2answers
640 views

NSTextField on top of custom drawing - black outline and cursor not blinking?

I'm completely stumped with this problem. I made a custom search control that uses a few different classes. For some reason, when an NSTextField is anywhere over these different pieces, it displays a ...