Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
573 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 ...
7
votes
3answers
360 views

Is it possible to bring window to front without taking focus?

I am working on an application for my personal usage that will remind me of stuff at regular intervals and/or will require text entry. Hence this popup window has an NSTextField. If the window pop's ...
7
votes
2answers
6k views

How do you set the text in an NSTextField?

I'm trying to set the text in an NSTextField, but the -setStringValue: and -setTitleWithMnemonic: methods are not working. Any ideas? Rgds / a²
7
votes
4answers
5k views

How to limit NSTextField text length and keep it always upper case?

Need to have an NSTextField with a text limit of 4 characters maximum and show always in upper case but can't figure out a good way of achieving that. I've tried to do it through a binding with a ...
6
votes
2answers
2k views

Add shadow (recessed text effect) to Cocoa label without degrading text rendering quality

I'd like to create statusbar with text effect like in Safari or iTunes, i.e. recessed text. However, if I simply add shadow in Interface Builder using Core Animation panel, OS X's worst text ...
5
votes
1answer
390 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 ...
4
votes
1answer
119 views

How to determine when NSTextFieldCell isHighlighted has no focus?

I've subclassed a NSTextFieldCell (inside a NSTableView) to draw a custom foreground color when a cell (ie row) is selected (eg isHighlighted is true) and everything works fine. The problem is when ...
4
votes
2answers
755 views

NSTextField placeholder text doesn't show unless editing

I set the placeholder text of my NSTextField in Interface Builder, but the placeholder text doesn't show until I click inside the text field to edit it. Anyone else having this issue? Thanks EDIT: ...
4
votes
1answer
269 views

How to fix focus ring's highlight being clipped when using CALayer?

The window's contentView has NSTextFields. (MacOS) i'm using interface builder to setup the window and its features, so nothing in awakeFromNib except this: [[self.window contentView] ...
4
votes
1answer
315 views

NSTextField like safari address bar

Whats the best way to go about building an address field like the one in safari? Needs to have editable text, and determinate progress indicator background.
4
votes
1answer
2k views

NSTextField or NSTextView?

Could someone explain to me what are the main differences between NSTextField and NSTextView? I know that NSTextView has more features and is usually used for longer texts, and NSTextField is usually ...
4
votes
2answers
637 views

Why do hyperlinks sometimes not show in an NSTextField with an NSAttributedString?

The text I use in an NSTextField is loaded from a file as follows. NSString *path = [[NSBundle mainBundle] pathForResource:@"Credits" ofType:@"rtf"]; NSAttributedString *as = [[NSAttributedString ...
4
votes
1answer
4k views

How to customize NSTextField look (Font used, font size) in Cocoa?

I'm making a Cocoa application and I can't figure out how to do something. I want to make an NSTextField with a custom look like the one in Wallet : Wallet screenshot. I figured out how to ...
4
votes
2answers
813 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 ...
3
votes
4answers
78 views

Vanishing NSTextField Text

I have a custom view in a .xib file, which I use as the contentViewController for an MAAttachedWindow. The view has several NSTextFields in it. When I open the MAAttachedWindow first time, everything ...
3
votes
1answer
392 views

NSTextField not calling delegate when inside an NSTableCellView

I have a fairly vanilla Source List (dragged out from the Object Library) in my app, with an NSTreeController as its data source. I set the NSTextField inside the DataCell to be editable, but I want ...
3
votes
1answer
206 views

How to find which NSTextfield is focused

I'm having a problem finding out which NSTextfield is focused. I am building a multi-language form and have several NSTextfields for data entry. I have to change the text input source for some of the ...
3
votes
2answers
930 views

Listen to a value change of my text field

I'm trying to understand how to catch a "text changed" event from a text field in my window. I'm used to Java's "action listeners", and can't find anything similar in Objective-C/Cocoa. I searched for ...
3
votes
1answer
503 views

iTunes Song Title Scrolling in Cocoa

I have searched extensively and cannot for the life of me find any information about how to achieve a similar effect to that of the iTunes song title scrolling if the text is too large in Cocoa. I ...
3
votes
1answer
713 views

Faking an NSTextField using an NSTextView to get nice coloring?

Trying to change the selected text background color for an NSTextField (we have a dark UI, and selected text background is almost the same as the text itself), but only NSTextView seems to allow us to ...
3
votes
2answers
983 views

How do I enable spell checking within an NSTextField on Mac OS X?

I have an NSTextField that I would like to enable "as-you-type" spell checking. When I load my application I can do this from the Menu Bar > Edit > Spelling and Grammar > Check Spelling While Typing. ...
3
votes
3answers
1k views

NSTextField - White text on black background, but black cursor

I've setup an NSTextField with text color as white, and the background color as (black despite not rendering the background color, so its transparent). All in Interface Builder. The problem I am ...
3
votes
1answer
293 views

Which NSTextView is the First Responder?

I'm working on a Cocoa programming exercise, and I need to be able to determine which of two NSTextView objects is currently being edited. I think it's something to do with finding the first responder ...
3
votes
2answers
883 views

How to control the text color of an NSTextField when it is displaying a placeholder marker?

When the NSTextField (Label) is bound to a controller selection with bindings, and I have specified placeholder values for the Multiple Values Marker, No Selection Marker, etc it draws the text with a ...
2
votes
0answers
28 views

Change language for spell check in NSTextField runtime

I am working on an application that lets the user install a new language to his OS X spelling. In this application I also want the user to be able to test the new language added by entering some text ...
2
votes
1answer
103 views

Can set either alignment or font, but not both, for NSTextField

I have a panel nib with an outlet for one of its textfields, which is set in the nib to have centered alignment. When I display the panel, I would like this textfield to be bolded. Since NSTextField ...
2
votes
1answer
111 views

How to hide focus ring for NSTextFieldCell?

I'm trying to get this blue border (which is around a NSTextFieldCell when you can edit the value) out of the way. Is there a way manage this somehow? At the same time the user should still be able to ...
2
votes
1answer
168 views

Mac OS X: strikethrough the text in a label (NSTextField)

Is it possible to strikethrough the text in a label (NSTextField)? I have tried to use the Font Panel, but apparently these are ignored when I try to set them:
2
votes
2answers
93 views

No input to NSTextField when running macruby

i have a simple macruby application and i want to get some user-input via a NSTextField, but when i run the application with '''macruby test.rb''' all the input on the focused text-field goes into the ...
2
votes
1answer
261 views

NSTextField won't setStringValue

I'm just at the beginning of a quite simple app (not really that into objective C yet) with a NSWindow containing a NSTextField. The appdelegate.h has this: NSWindow *window; NSTextField *userIDText; ...
2
votes
2answers
146 views

Selecting text programatically in menu view

I write an "Agent" Cocoa app where I have TextField in status icon's menu, it looks like this: And in couple of places I select its contents programatically (e.g. in -(BOOL)becomeFirstResponder of ...
2
votes
1answer
76 views

Disable Regional settings for NSTextField

I have a problem with NSTextField in Cocoa. Is there a way to remove regional settings from a NSTextField I want the user to only enter values like so 0.6, 0.7 but if the user is not from US he is ...
2
votes
1answer
152 views

NSTableView triggering another action when clicked

While learning objective-c, I've made a basic mac shopping list app with 3 interface elements: NSTextField, NSButton and NSTableView. The basic idea is you type something into the text field, hit the ...
2
votes
1answer
263 views

NSNumberFormatter doesn't allow typing decimal numbers

I am totally bewildered using NSNumberFormatter. This should be totally simple but I can't get it to work. I'd like to set an NSTextField to allow typing decimal numbers, either with a decimal point ...
2
votes
0answers
143 views

NSTextField bounce truncated text instead of wrapping

I was wondering if there was a simple way to "bounce" or scroll an NSTextField with text thats too long to display. For Example: ----------------------------- <-- scroll | ...
2
votes
1answer
553 views

NSTextField enter key detection or firstResponder detection

I have two NSTextFields: textFieldUserID and textFieldPassword. For textFieldPassword, I have a delegate as follows: - (void)controlTextDidEndEditing:(NSNotification *)aNotification This delegate ...
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
2answers
259 views

Anyway to make a (wrapping) NSTextField write a carriage return upon pressing return key?

I want to use a wrapping text field that can potentially contain carriage returns in my app. Is there any way to force the NSTextField object to write a carriage return into the text area instead of ...
2
votes
1answer
309 views

NSTextField : How to draw background only when focused

I put a textfield in a window, and I want the textfield draw background only when focused. I know that all the controls in the window share one field editor. I tried subclass nstextfield and implement ...
2
votes
2answers
248 views

NSTextfield + NSMenu and first responder

I'm trying to implement my own autocomplemention system (result is pull from an sqlite database) I've set up a NSTextField and the appropriate delegate. Each time the text in the NSTextField change, ...
2
votes
2answers
440 views

NSTextField delegate notifications — how to get text?

I've been trying to learn to use Xcode, but I'm getting confused with how to register that NSTextField has changed. Essentially, I have an NSTextField and a button. Clicking the button does stuff with ...
2
votes
1answer
144 views

Why does NSTextField not redraw the background of focused fields?

I'm running into a weird problem. I have two NSTExtFields representing a username and a password. When I get an incorrect username/password combination, I set an instance variable stating so in the ...
2
votes
1answer
211 views

Cocoa auto-update dictionary values from NSTextField

Right now I have a dictionary containing a string value and an NSTextField in my interface. However, in order to update this value I have to click a button that then runs the update code. How can I ...
2
votes
1answer
311 views

NSButton Inside NSTextField

I'm trying to create a NSTextField with a button on its right side (similar to a NSSearchView), but I can't figure out how to have the NSTextField's text scroll without going under the NSButton. Here ...
2
votes
0answers
414 views

Fail to automatically resize NSTextField under NSView (as menu item)

Greetings to the community, I am an inexperienced user trying to learn via the simple projects creation process... I request your assistance as I have not found a working solution for two whole days ...
2
votes
2answers
1k views

NSTextField - make selected text bold, italic or underline?

I have an NSTextField where the user can write text. I would like to be able to make 3 buttons: bold, italic and underline; these buttons should change the user selection in the textfield to either ...
2
votes
3answers
233 views

Add hotkey when editing a NSTextField

Is it possible to add hotkeys only when you're editing a certain NSTextField? For example, when you're in this text field I would like it if you pressed Command + 1 it inserted one string, and ...
2
votes
2answers
3k views

Objective c checking whether text field is empty

Here's the code: - (IBAction) charlieImputText:(id)sender { //getting value from text field when entered charlieImputSelf = [sender stringValue]; if (charlieImputSelf != @"") { ...
2
votes
4answers
2k views

NSTextField enter to trigger action

I've been looking all over for a simple example of how to have an action (or button) be triggered when the enter key is hit in the text field. Should I subclass the text field? Would I need to set a ...
2
votes
1answer
1k views

selectText of NSTextField on focus

Could anybody suggest a method to select all the text of an NSTextField when the user clicks it ? I'm new to Cocoa, and could not find a solution here or on the web. I did find suggestions to ...

1 2 3 4 5