NSTextField object belongs to Apple's class. It's a kind of NSControl that displays text that the user can edit or select.

learn more… | top users | synonyms

1
vote
1answer
13 views

Why would subclassing NSFormatter prevent me from editing NSTextField's input?

I'm trying to format two NSTextFields for SMPTE time codes, which have the format: HH:MM:SS:FF. However, when the user switches the SMPTE code to drop-frame, the delimiter between SS and FF needs to ...
0
votes
1answer
74 views

How to overwrite textDidChange: method correctly?

I subclassed NSTextField and overwrite the textDidChange: as: - (void)textDidChange:(NSNotification *)notification { // ... My own operation } But when I drag a input text box into my .xib file ...
0
votes
2answers
43 views

How to forbid copy or paste operation in NSTextField?

As the title mentions. How can I forbid the copy (Command + C) and paste (Command + V) operations in an NSTextField or NSSecureTextField?
0
votes
1answer
20 views

NSTextField text and background colour with/without focus

I just ran into an issue with resetting colours when an NSTextField was selected. The methods I'm using are - (void) setBackgroundColor:(NSColor *)aColor - (void) setTextColor:(NSColor *)aColor ...
0
votes
1answer
24 views

how can form a user in put with text field and without a button

i want to form a textfield in my view controller. After user make his input to this text field and press return or dismiss keyboard with touching to the screen, an action must be done. how can i ...
1
vote
2answers
38 views

NSTextField accessibility - How to provide alternate text for voiceover

It will probably be obvious, but I have never done any work with NSAccessibility before so I'm assuming what I'm asking is something simple I've overlooking. I have an NSTextField displaying a ...
0
votes
6answers
118 views

How do I combine a char with an int in an NSTextField in Objective-C?

For example, I have the following code, where lblPercent is an NSTextField: double Progress = progress( Points); [lblPercent setIntValue:(Progress)]; I set it as integer value so it tosses out the ...
1
vote
0answers
71 views

Change border “glow” color of NSTextField

I have an NSText field in MainMenu.xib and I have an action set to validate it for an email address. I want the NSTexFields border color (That blue glow) to be red when my action returns NO and green ...
0
votes
1answer
22 views

NSTextView inherits parents view background on update

I have a NSTextView that I am using to display a timer. This timer updates every second counting down to 00:00. When the timer updates the string for the NSTextView, the NSTextView acts as if it ...
0
votes
1answer
23 views

NSSearchField animation

How to animate an NSSearchField like the one in Reeder for Mac : http://juliensagot.fr/upload/reederSearchAnimation.mp4 Thanks for your ideas
1
vote
1answer
45 views

How to fake a click on an NSTextField?

I have an NSTextField. I'd like to programmatically invoke a mouse click on it. Is this possible? I know I can just make the field a first responder, but I'd just like to know if a fake click can be ...
3
votes
1answer
88 views

NSTextField: exposing its Copy and Paste methods

I am trying to access the copy, cut, and paste methods of a NSTextField instance in its window delegate so I can customize these methods. I find that unlike tableViews and textViews, the textfield's ...
0
votes
3answers
26 views

How to assign the value of NSTextField 1 to r NSTextField 2

Im reading a book and in the sample code they show how to assign the value of a NSTextField to another NSTextField like this: self.theStory.text = self.theTemplate.text; When I try to do the same ...
0
votes
0answers
30 views

nstextfield securetextentry

I am doing login page.Its interesting because when i get user input its fine.Its going to get stored in file.And now onwards problem starts,the values stored in file get printed on respective ...
0
votes
1answer
61 views

How to make NSPopUpButton accept firstResponder status?

I have an NSPopUpButton and even a simple subclass of NSPopUpButton. In the subclass I have: - (BOOL)acceptsFirstResponder { return YES; } - (BOOL)refusesFirstResponder { return NO; } Now it's easy ...
0
votes
2answers
101 views

NSTextView keyDown Event

I want trigger the keyDown Event with every Key action. Therefore I have created a subclass of NSView. @interface CodrTextView : NSView { NSTextField *lineNumberSpace; NSTextView ...
0
votes
1answer
39 views

How to call a tagged textfield

I am creating a series of textfields programmatically using tags. I want to be able to access the data in each text field, but it keeps reverting back to the last tag. In this example I am creating ...
1
vote
0answers
56 views

NSTextField doesn't respond to keyboard input

I tried to write a single-window application using Objective-C in OS X 10.8 to test some thing. Everything works fine except that the NSTextField I created does not respond to keyboard input. The ...
1
vote
2answers
101 views

NSTextField character set limit

I newbie on Xcode and programming for MacOS application. Let me help please. I can't understand how write action (or event i don't know) for create limit character set and checking NSTextField on ...
0
votes
2answers
59 views

Constrain two text fields to maintain an aspect ratio

I have two text fields: one for width and one for height. Let's say the starting values are 1080 by 720. If the user changes the 720 to 360 I want to automatically change the 1080 to 540. What is ...
1
vote
1answer
98 views

NSDateformatter added in Interface Builder on NSTextfield adds GMT difference

OK, I want to build a countdown timer with a NSTextfield and a NSStepper to increase it. Both have bindings to the same int property in ModelKeyPath in Interface Builder. To format the int value ...
1
vote
2answers
74 views

100000 objects: How to autocomplete in an NSTextField fast

I need to autocomplete the user's entries in an NSTextField and I use an NSArray to check if there is a match but the NSArray is about 100,000 objects so the matching takes a noticeable time. The way ...
0
votes
1answer
35 views

Is it possible to animate a NSTextField

I´m trying a pretty simple thing for testing and can´t get it to work, sorry. What I want to achieve is that the changes in the textfield label are seen on the screen as well as the color changes. I ...
0
votes
0answers
90 views

Syntax Highlighting on a NSTextField

In my app I have a view-based table view with little snippets of syntax highlighted code in each cell. I would normally present the colored code with an NSTextView but considered that I might have 10 ...
0
votes
1answer
67 views

The blue focus ring outside NSTextField missing?

In normal case, a blue retangle would appear outside a NSTextField object which becomes the first responder, like this image: link for Normal Case However, I got a NSTextField that have no the blue ...
0
votes
2answers
112 views

Make NSComboBox Appear when NSTextField is clicked

How can I make an NSComboBox disappear when an NSTextField is clicked? This is the code I'm using: Class comboBox: (used as custom class for my NSComboBox in the interface builder) comboBox.h: ...
0
votes
2answers
52 views

Having an unwanted white background while setting background color in NSTextField

I have an NSTextField that is placed in IB. The delegate is set and its method - (void)controlTextDidChange:(NSNotification *)notification works fine. What I like to achieve is to set the ...
1
vote
1answer
32 views

How to access application's shared NSTextView

I want to add a menu item to all text field's contextual menu. I can do it if I get a hold of the internal field editor of type NSTextView used by all NSTextField's through out the application. The ...
2
votes
2answers
55 views

textDidEndEditing: - how to filter “Return” key?

OK, this my situation : I'm using an NSTextField I'm observing the NSTextDidEndEditingNotification notification This is the final method : - (void)handleConsoleInput:(NSNotification*)not This ...
0
votes
1answer
48 views

NSTextField without margin?

Is there a way to have an NSTextField without any margins? I'm trying to set my textfield as wide as the text itself, but I have to add some random nr (10px) to make it all show. NSSize size = [title ...
0
votes
1answer
76 views

Call a method in appDelegate from a button action connected with an nsView

Here is my problem. I have an NSTextField connected to my app delegate. Then i have a CustomView in my MainManu.xib associated with a new class i created, "myView", sublass of NSView. finally a Button ...
2
votes
1answer
42 views

How to customize cursor in NSSearchField?

This seems it should be easy enough, but could anyone give me pointers on how to do this? Seems I should be subclassing NSTextView and using drawInsertionPointInRect:color:turnedOn: but how would I ...
0
votes
1answer
37 views

How to add a Windows-like weblink in Xcode for OS X?

In Windows system, a usual web link is like a underlined, blue text. When clicking it, it will lead you to a web browser and open the website. However, I did not find a perfect way to create the ...
0
votes
1answer
52 views

Borderless NSTextField with a 6px border-bottom?

Is it somehow possible to subclass NSTextField, and add a 6px border to the bottom side only? The other sides should be borderless. No shadows, no anything. I tried replicating this with a NSView ...
2
votes
1answer
35 views

Label Alignment

for(int j=0;j<featuresKeyCount;j++) { NSString *str1=[featuresKey objectAtIndex:j]; NSString *str2=[str1 stringByAppendingString: @":"]; } In the above code i am getting str1= ...
0
votes
1answer
73 views

`controlTextDidEndEditing` gets fired when TextField becomes first responder

I'm trying to detect when user finishes editing a NSTextField by implementing NSTextFieldDelegate's controlTextDidEndEditing: method. However the problem is that upon initially making the NSTextField ...
0
votes
0answers
62 views

Required Field Validation Does Not Work As Expected

I have a model object which has its attributes bound to NSTextFields on a sheet. The NSTextField that becomes first responder when the sheet is activated is bound to the object's name attribute. This ...
0
votes
1answer
53 views

Text Editing with NSCollectionView

I've been banging my head against the wall (Cocoa) for about a week with this problem and wanted to get some advice if possible. I'm trying to provide a list of NSTextFields to the user representing ...
0
votes
0answers
65 views

Xcode set nextKeyView programmatically

When using couple NSTextFields for user input: 1.) Is it possible to set the focus to a specific NSTextfield programmatically after using the return key? Using nextKeyView in the IB doesn't do the ...
0
votes
1answer
113 views

Vertically resize NSTextField when window is resized by the user

I have an NSTextField within a View of a Window. I have tried all IB options but I can't seem to achieve the following: There is a pretty long sentence in the NSTextField - when the Window is ...
1
vote
1answer
166 views

Shadow inside text on NSTextField/NSTextFieldCel

I've been trying for a day or two to try and get a shadow to draw inside the text of an NSTextField (and making the foreground color transparent, so all you see is a shadow inside the text). I've yet ...
0
votes
0answers
41 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
0answers
35 views

Next key view is not working properly

In my app,I had given first responder as tableview,then I had connected tableview's nextKeyView as textfield,correspodingly I had given nextKeyView connection to all other components in xib.But when i ...
1
vote
1answer
109 views

NSSecureTextField stringValue is always “(null)”

I have a User class with the properties myUsername and myPassword and I want my text fields in the UI to pass the string values to an AppDelegate method called link which does some background NSTask ...
1
vote
1answer
63 views

Flexible height for editable NSTextField

I've created a very simple demo project with a view based table view and the following NSTableViewDelegate implementation - (NSView *)tableView:(NSTableView *)tableView ...
1
vote
0answers
40 views

How to create NSbutton insode NStextfield

In my application i need to show one label which showing the content and in the end of the label i need to show one button with close icon that will perform some action. can any one suggest way how to ...
0
votes
2answers
199 views

Enable text box when checkbox is ON using objective c

How do I enable a text box when I check the checkbox through bindings in Cocoa?
0
votes
1answer
66 views

NSStepper with decimal value

Does anybody have a workaround for using a NSStepper control (many, in fact..) with an Increment set to 0.1 or anything other than integer values w/o calling setIncrement: on each and every NSStepper ...
1
vote
1answer
249 views

make nstextfield single line

how to make NSTextField really single line? I created a text field programmatically. when the return key is pressed, all text is selected. but I can still paste multiple lines of text. And when I ...
0
votes
2answers
224 views

NSTextField width and autolayout

I am trying to create an NSTextField programmatically. I want to use this NSTextField with auto layout, so its width will be defined automatically to display the entire line (there is only one line ...

1 2 3 4 5 10