Tagged Questions

A UITextField object is a control that displays editable text and sends an action message to a target object when the user presses the return button. You typically use this class to gather small amounts of text from the user and perform some immediate action, such as a search operation, based on that text.

learn more… | top users | synonyms

62
votes
7answers
10k views

iPad keyboard will not dismiss if modal view controller presentation style is UIModalPresentationFormSheet

UPDATE 2011-03-31: As of iOS 4.3, you can now implement a disablesAutomaticKeyboardDismissal and return NO, as in - (BOOL)disablesAutomaticKeyboardDismissal { return NO; } (thanks Sebastian ...
56
votes
7answers
55k views

How do you dismiss the keyboard when editing a UITextField

I know that I need to tell my UITextField to resign first responder when I want to dismis the keyboard, but I'm not sure how to know when the user has pressed the "Done" key on the keyboard. Is there ...
42
votes
11answers
25k views

Placeholder in UITextView

I'm making an application which uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField. Does anyone know how to do this? Thanks in ...
24
votes
7answers
16k views

iPhone Keyboard Covers Text Field

I have an app where, in Interface Builder, I set up a UIView that has a text field near the bottom of the view. When I run the app and try to enter text into that field, the keyboard slides up ...
20
votes
6answers
2k views

UITextField auto correction crash in iOS 4.3 on simulator

The UITextField's auto correction crashes my app on the simulator with iOS 4.3 sdk build target. Works fine on the device and in the simulator with iOS 4.2 sdk. Anyone else experiencing this issue? ...
17
votes
6answers
12k views

iPhone UITextField - Change placeholder text color

I'd like to change the color of the placeholder text I set in my UITextField controls, to make it black. I'd prefer to do this without using normal text as the placeholder and having to override all ...
17
votes
8answers
18k views

iPhone how to check that a string is numeric only

How do I validate the string input from a UITextField? I want to check that the string is numeric, including decimal points.
17
votes
1answer
9k views

Adding the “Clear” Button to an iPhone UITextField

How do you add that little "X" button on the right side of a UITextField that clears the text? I can't find an attribute for adding this sub-control in Interface Builder in the iPhone OS 2.2 SDK. ...
16
votes
5answers
760 views

Is there a way to prevent the keyboard from dismissing?

I realize that this is the inverse of most posts, but I would like for the keyboard to remain up even if the 'keyboard down' button is pressed. Specifically, I have a view with two UITextFields. With ...
16
votes
4answers
6k views

Set padding for UITextField with UITextBorderStyleNone

I wanted to use a custom background for my UITextFields. This works fine except for the fact that I have to use UITextBorderStyleNone to make it look pretty. This forces the text to stick to the left ...
16
votes
1answer
8k views

UITextField: move view when keyboard appears

I'm currently working on an iPhone application with a single view, which has multiple UITextFields for input. When the keyboard shows, it overlays the bottom textfields. So I added the corresponding ...
12
votes
8answers
5k views

Detect backspace in UITextField

Is there any way to detect when the backspace/delete key is pressed in the iPhone keyboard on a UITextField that is empty? I want to know when backspace is pressed only if the UITextField is empty. ...
10
votes
5answers
1k views

UITextField Autocomplete - iPhone SDK

I am trying to figure out if there is a way to implement an autocomplete functionality in a UITextField for specific values. I know that the UITextField can do this using the iPhone dictionary (much ...
9
votes
5answers
1k views

Is there an iPhone equivalent to the NSTokenField control?

In my app I want the user to type names into a UITextField (or equivalent) and then when they press return, it will put that word(s) in a blue bubble that's usually associated with tags. The cursor ...
8
votes
3answers
1k views

Can I programmatically fire the “switch to number pad” button on iPhone keyboard

I want to find a way to programmatically fire the selector that causes the iPhone keyboard to switch from letters to numbers. I am aware that I can switch the keyboard type, but I want to know if ...
8
votes
5answers
7k views

iPhone UITextField controlling background color

Greetings, I am unable to control the background color of a UITextField with a borderStyle= UITextBorderStyleRoundedRect. With this border style the backgroundColor property only seems to control a ...
8
votes
4answers
10k views

Drop Shadow on UITextField text

Is it possible to add a shadow to the text in a UITextField?
7
votes
4answers
1k views

Disable UIScrollView scrolling when UITextField becomes first responder

When a UITextField, embedded in a UIScrollView becomes first responder, by lets say the user typing in some character, the UIScrollView scrolls to that Field automatically, is there any way to disable ...
7
votes
5answers
2k views

ResignFirstResponder doesn't dismiss the keyboard (iPhone)

I've searched through this site that I couldn't find a solution to the problem I'm facing now. Hope someone can help. I've created a UIAlertView to prompt user to enter their name in an iPhone app. ...
7
votes
2answers
691 views

How to change the writing direction in iPhone UITextView or UITextField

Right now if you type something in a right to left language and tap and hold, the copy and paste menu will have an extra option for changing the writing direction form "left to right" to "right to ...
7
votes
3answers
5k views

Numeric keyboard with decimal separator

How can I get the numeric keyboard with the decimal separator? Currently I am stuck with UIKeyboardNumberPad.
7
votes
3answers
3k views

iPhone SDK - UITextField with + Button for Contacts

In some applications like Mail, when you have a UITextField, there is a little + button to the right. When you tap it, a modal view controller comes up which you can select a phone number, address, ...
6
votes
1answer
1k views

How do I vertically center UITextField text?

I am simply instantiating a UITextField and noticing that the text doesn't center vertically. Instead, it is flush with the top of my button, which I find kind of odd since I would expect the default ...
6
votes
3answers
5k views

Get UITableView to scroll to the selected UITextField and Avoid Being Hidden by Keyboard

I have a UITextField in a table view on a UIViewController (not a UITableViewController). If the table view is on a UITableViewController, the table will automatically scroll to the textField being ...
6
votes
8answers
1k views

how can I dismiss keyboard when I will just touch anywhere except UITextField?

Hello I have two UITextFields in my application, and want to dismiss the keyboard when I just touch anywhere except the UITextFields how can I do this?
6
votes
1answer
1k views

Unwanted automatic scrolling with UIScrollView and UITextFields as subviews

The "too long; didn't read" version: Is there any way to disable the automatic scrolling behaviour of UIScrollView when telling a UITextField to becomeFirstResponder? I have a scroll view with paging ...
6
votes
6answers
1k views

iPhone - possible to not show keyboard but still show the cursor in a UITextField?

I have a custom keyboard I want to show when the user taps a UITextField. But at the same time I want to show the cursor in the textfield. If if return a NO for canBecomeFirstResponder, it doesn't ...
6
votes
1answer
6k views

iPhone: Issue disabling Auto-Cap/autocorrect on a UITextField

For some reason, even though I disable the auto-cap and auto-correct of my UITextField, it's still capitalizing the first letter of my input. Here is the code: UITextField* textField = ...
6
votes
3answers
6k views

Using textField:shouldChangeCharactersInRange:; how do I get the text including the current typed character?

//find below, the code example & associated result - (BOOL) textField: (UITextField *)theTextField shouldChangeCharactersInRange: (NSRange)range replacementString: (NSString *)string { if ...
6
votes
2answers
11k views

Elegantly replace iPhone keyboard with UIPickerView

I have a table view that has embedded UITextFields for entering some data. It also has two other fields that popup a UIPickerView and a UIDatePicker - as demonstrated in the DateCell example from ...
6
votes
2answers
2k views

UITextField will not auto capitalize throughout entire project

For some reason, none of my UITextFields will autocapitalize. I have set the property in InterfaceBuilder as well as programatically as shown below. cell = [[UITableViewCell alloc] ...
5
votes
1answer
355 views

Why is resignFirstResponder being called twice in iOS 5.0 but only once in iOS4.2-4.3?

I have a app in the App Store compiled for 4.2 that is acting odd when running under iOS 5.0. I have tracked it down to resignFirstResponder being called twice under iOS 5.0 while it was only being ...
5
votes
4answers
360 views

UITextField - crash on delegates that return BOOL

I have a UITextField that I am adding to a UITableViewCell to use as a search field for a long list of accounts. I have added it as follows: - (UITableViewCell *)tableView:(UITableView *)tableView ...
5
votes
0answers
328 views

Using a custom font in a UITextField causes it to shift slightly when accessed — is there a fix?

I have a custom font in a UITextField, and I've noticed that when it's accessed (when the keyboard appears), the text shifts down by a very small amount -- maybe a pixel or two or three. (I've no way ...
5
votes
2answers
533 views

How to nest a UITextField within a UITableViewCell?

I'm just starting out working on my first iOS app. How do you create a UITableViewCell that contains a UITextField that looks like the Title and Location fields when adding an event within the ...
5
votes
5answers
250 views

How to determine the length of the text in a UITextfield

I have a UITextField from which I'd like to determine the width of the entered text. The bounds property has just the size of the Textfield but not of the text
5
votes
1answer
2k views

UITextField Notify on value changed?

How can I make it so that when a text field changes, a function is called on a script?
5
votes
3answers
3k views

wait_fences: failed to receive reply: 10004003 - what?

Been getting this odd error. heres the deal - in the below method i have an alert view come up, take a U/N and PW, then atempt to start another method. The method -postTweet does not get ...
5
votes
6answers
4k views

Set UITextField Maximum Length

Is there any way to set the maximum length on a UITextField? Something like the MAXLENGTH attribute in HTML input fields.
5
votes
2answers
1k views

IPhone UITextField not showing edit caret or clearing placeholder text when tapped

I have a window within an iPhone application, which is displayed modally to allow the user to enter their settings for a web service upon 'first run'. The text fields have helper text set, and when ...
5
votes
3answers
6k views

Programatically Select all text in UITextField

How can I programatically select all text in UITextField? Thanks!
5
votes
4answers
4k views

Insert string at cursor position of UITextField

I've got a few UITextFields in an UITableView. The user should be able to insert only numbers and dots. To do this, I set the keyboard type to UIKeyboardTypeNumberPad and added a '.'-Button at the ...
5
votes
4answers
4k views

Filtering characters entered into a UITextField

I have a UITextField in my application. I'd like to restrict the set of characters that can be can be entered into the field to a set that I have defined. I could filter the characters entered into ...
4
votes
1answer
154 views

Can I create a custom text field and keyboard for iOS w/o subclassing UIControl?

My app will require the user to input chemistry formulas (H2O, Na^2+), and since subscripts and superscripts may make the typing process confusing for the user, I have decided to make a custom ...
4
votes
3answers
469 views

UITextField background behaviour change from iOS 4 to iOS 5

In my app I have a UITextField which is on top of a background image. Under iOS 4 I had to set the backgroundColor property to 'clearColor' in order to make it look right. Under iOS 4 the textfield ...
4
votes
1answer
144 views

Objective-C Runtime: Swizzled method name?

In an attempt to Detect backspace in UITextField, I've tried subclassing UITextField and overriding -[UIKeyInput deleteBackward], but it never gets called. So, I'm suspecting UITextField swizzles ...
4
votes
5answers
109 views

UITextView to Calculation Not Working

Consider the following code: Here is my price calculator controller header file. #import <Foundation/Foundation.h> #import "PriceCalculator.h" @interface PriceCalculatorController : ...
4
votes
3answers
416 views

Enter fractions in a uitextfield from 3 UIPickers?

So what I'm intending to do is instead of typing in decimals, I want to be able to enter whole numbers and fractions in a textfield. Or select them from a UIPicker. Example: Feet, Inches, ...
4
votes
1answer
353 views

Can I change property UIReturnKeyType of UITextField dynamically?

we can set this property of UITextField to "Send", "Search", "Go", etc.: @property(nonatomic) UIReturnKeyType returnKeyType But setting it while using the UITextField doesn't change at all. I want ...
4
votes
5answers
133 views

textfield selected by default-iphone

I want that my textfield must be focused when i open the login page in iPhone. Please help.

1 2 3 4 5 28