The uitextfielddelegate tag has no wiki summary.
1
vote
2answers
30 views
How do i identify which textField triggered textFieldDidEndEditing on dynamically created UITableCell containing 2 uiTextFields
iOS 6 xcode 4.6.2 using storyboards
Hi guys my problem is this
I am using a dynamic UITableView which consists of a number of cells each of which have two UITextFields on them. The two fields are ...
-1
votes
1answer
40 views
Weird error while using UITextFieldDelegate
I have this error while messing with UITextField delegate:
Can't find keyplane that supports type 8 for keyboard Wildcat-Landscape-QWERTY-Pad; using ...
0
votes
1answer
59 views
Limit number of digits before & after decimal points in UITextField
I want to limit the digits entered in UITextField. Here is my code
#define MAX_NO_OF_DIGITS_BEFORE_DECIMAL 8
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range ...
0
votes
2answers
65 views
UITextField on new screen will not accept input
I'm modifying an existing iPad app in Xcode. The app is very simple, consisting for 4 screens that collect information and send it to a web service.
I'm trying to add an additional screen with four ...
0
votes
1answer
67 views
Trying to limit the number of characters of UITextField in iOS
I have a UITextField in my iOS app where I am already modifying the user's input. I realize now that I need to also make sure that the UITextField can hold a certain number of characters. I am ...
0
votes
2answers
79 views
Unable to edit UITextField after user has entered value in iOS
I have the following implementation of the delegate method in iOS:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if ...
0
votes
2answers
106 views
textfieldshouldclear: not invoked by UITextfield
I am trying to invoke -(BOOL) textFieldShouldClear:(UITextField *)textField when UITextField's clear button is tapped. I have already set my delegate and UITextField's other delegate's methods are ...
1
vote
2answers
54 views
ios edit textfield infinite loop
Problem: I have a method that handles editingChanged events and another method that updates my textfields from an object model. The problem is that if I modify the text of the field that sent the ...
0
votes
0answers
73 views
How to include return button in UIKeyboardTypeDecimalPad?
I am implemented a UITextField which is supposed to only let user include decimal numbers. I have changed the keyboard type to UIKeyboardTypeDecimalPad but there is no return button on this keyboard ...
1
vote
2answers
82 views
Hiding the Keyboard on button click?
I am creating iPhone app which I show below.
At the end of screen I have text field. I have added a delegate for the same. As it is number pad, I have added button seperately so that when button is ...
0
votes
1answer
121 views
UITextField no white spaces with maximum characters limitation
I have two UITextFields: usernameField & passwordField. For both fields I'm trying to implement the code below to NOT allow the user to type in any white space (use spacebar) and to also limit ...
0
votes
1answer
168 views
Detecting Tab Key Press On Bluetooth Keyboard
If a bluetooth keyboard is connected to an iPad, I can pick up the enter key with:
-(BOOL)textFieldShouldReturn:(UITextField *)textField
but what do I use if I need to detect the tab key as well?
...
0
votes
2answers
142 views
Having trouble using NSNumberFormatter for currency conversion in iOS
I have a UITextField that receives numeric input from the user in my application. The values from this textfield then get converted into currency format using NSNumberFormatter within my ...
0
votes
1answer
38 views
Getting an IndexOutofBoundsException when implementing delegate method shouldChangeCharactersInRange in iOS
I have a UITextField in my application that I want to function like a calculator. I need it to have the default value of 0.00, and as the user enters digits, the numbers move from right to left, ...
0
votes
1answer
58 views
UITextfield not displaying text on it ,if text is typed
I have created a uitextfield programatically,also added uitextfield delegate protocol. But the problem is that, even though it is displaying the text field, it is not displaying any text if typed (or ...
1
vote
0answers
166 views
Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x
Working on iPhone/iPad application,
Problem: Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x, but same code works fine on iOS 5.x
We developed a UIViewController, in which we ...
0
votes
0answers
42 views
UITextField.clearsOnInsertion acting funny
So when the keyboard is dismissed I make sure that clearsOnInsertion = YES, and when the text field starts, It always says its on. But If the text doesn't change and I dismiss the keyboard, then It ...
0
votes
1answer
50 views
Should “Editing Changed” be fired if I return NO from textField:shouldChangeCharactersInRange:replacementString?
I am implementing a UITextFieldDelegate's method textField:shouldChangeCharactersInRange:replacementString and returning "NO", as I'm formatting the entered text (as currency) and saving it back to ...
0
votes
2answers
23 views
Warning For UITextFieldDelegate
I am following a tutorial within the IOS 6 Cookbook Fourth Edition on how to hide the keyboard when a user clicks Done. Unfortunately I am getting a warning that I do not understand b/c I'm a java guy ...
0
votes
0answers
107 views
UITextField Delegate methods are not getting called in order
I have 5 UITextFields in my View, When I tap on text fields keyboard opens up. From 3rd text field onwards the keyboard is hiding the text fields. So I am changing the self.view.frame.origin.y to ...
0
votes
2answers
156 views
TextField delegate method not being called
I am working on iOS 5 targeted project. I am facing a very strange issue. I am setting the
delegate for my textfield as
self.myTextField.delegate=self;(in viewDidLoad)
and even tried setting the ...
1
vote
1answer
182 views
how to move to next cell/row in table view with textview
i am stuck at this .please help me in sorting out this issue.
this is my image now i have 5 different rows in the table.
if u click on first textfield after editing the first field then i want done ...
0
votes
0answers
8 views
UITextField not interactive
For some reason UITextFields have always been tricky to make them present the keyboard, I always had to click them at the bottom. But now in an app I'm working on it refuses to be clicked anywhere. I ...
0
votes
2answers
269 views
ios - resignFirstResponder not working
I have a view presented modally which contains 3 label.
The third label should not be editable and should show a UIDatePicker when clicked on it, and hiding keyboard if it displayed.
So I did that :
...
3
votes
2answers
129 views
How to show keyboard upper side of UItextfield when we enter text, in iphone?
I have a UITextfield in which I am entering value. I dont want to scroll myself or adjust keyboard myself , I want Keyboard automatically adjust itself when I enter text in UITextfield and always show ...
0
votes
1answer
79 views
resignFirstResponder crashes while using UITextField in custom UlTableViewCell
I am getting an intermittent crash on my application. Crash log makes me think that there seems to be some issue the way UITextField's resignFirstResponser is being called. I am using UITextField and ...
0
votes
3answers
59 views
UITextFieldDelegate Causes Exception
Simple Case. I want to create a UIViewController displaying and reacting to the input of a simple UITextField.
I created a UIViewController including the xib file.
In Interface Builder I added a ...
1
vote
2answers
80 views
Displaying placeholder text in UITextField created through data source
Background:
I have a UITableView which has three rows with custom UITextFields that are populated from a TableDataSource. The default text in these text fields is also populated from the data source ...
1
vote
1answer
134 views
UITextField: textFieldShouldBeginEditing fires, but keyboard does not show
I have a text field that is apparently successfully calling delegate methods as the following method fires when I tap on the test field, but no keyboard shows.
- ...
0
votes
1answer
55 views
How to disable Japanese-mode input on a UITextField object?
I have a simple question.
In an iApp in Japanese I have one UITextField object which do not need Japanese input.
Is it possible to disable Japanese-mode input only for this one object.
(That would ...
0
votes
2answers
131 views
Accessing textField embedded in cell
I have created a table which dynamically creates cells which are customized to contain a textField. When I run the program, I am able to enter text into the textFields. However, I am not able to ...
1
vote
1answer
133 views
textFieldShouldBeginEditing not being called in custom class (delegate set)
I have a custom class like this:
@interface formParser : NSObject <UITextFieldDelegate> {
....
and in the .m I create a UITextField element like this:
UITextField *ui = [[UITextField alloc] ...
1
vote
3answers
117 views
Hide keyboard when editing another textfield
I have 4 textfields, when editing 3 of them I want the standard keyboard which works fine, but on the 4th textfield i want to display a picker wheel instead.
My code works fine when pressing on the ...
0
votes
2answers
50 views
I need to validate two uitextfields differently. How do I do this?
One text field only takes alphabet characters and the other one is alphanumeric. I have defined shouldChangeCharactersInRange in my ViewController for one of them. Now I don't know where I'm ...
0
votes
0answers
138 views
Text Field Validation and Done Button
I'm wondering about the best way to manage a particular edit cycle. I have a subclass of UIViewController called ItemDetailViewController. Among other things there's a UITextField (in a custom cell in ...
0
votes
1answer
347 views
iOS - Detect backspace in keyboard when UITextField is empty [duplicate]
Possible Duplicate:
Detect backspace in UITextField
I want to detect when backspace is pressed on the keyboard, even when a UITextField is empty.
I tried to use ...
0
votes
0answers
115 views
UITextField (in tableViewCell) become clear after scroll and loose focus
In my tableView i use cell with UITextField, when i start editng TextField and keyboard shown on screen,tableView moves in scrollView for more conveniences. I am editing first field and move up ...
0
votes
2answers
315 views
shouldChangeCharactersInRange cannot be called after set text for UITextField
I am using UITextField to input value, set its delegate to parent view controller, after use textField.text = @"some text" to set text value for text field, delegate function ...
0
votes
0answers
186 views
iOS: Set UITextField's inputview nil
For UITextField's inputView, I want to use my custom view which may not be at bottom of the screen so I don't want to set textfield's inputView property to my custom view. I am trying to set input ...
1
vote
0answers
105 views
textFieldDidBeginEditing is called prematurely
I have an application in which I have to scroll up in case of the keyboard showing.
to get the keyboard size, I'm registering the UIKeyboardWillShowNotification event like so:
...
0
votes
1answer
293 views
UItextView delegate not called using custom keyboard
I have serveral UITextView subviews, all using the same custom input interface (basically a numberpad with an autofill-option and a save button).
My problem is that the delegate method ...
0
votes
0answers
209 views
UITextFieldDelegate methods not responding for custom text field
I have a custom UITextField and I am using this textfield in one of my view controllers, making the view controller as the UITextFieldDelegate.
But the Delegate methods are not responding. Below are ...
0
votes
1answer
278 views
NSNumberFormatter change decimal separator style
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
...
0
votes
1answer
111 views
How to resign first responder when entering currency
I'd like to make my text field resign first responder after the cents are entered in a text field for entering currency. I'm using UIKeyboardTypeDecimalPad so only numerals are entered. When the ...
0
votes
1answer
239 views
UITextField not working properly within UITableViewCell
I'm having an issues while integrating UITextfield as a subview in UITableViewCell. I have used the following code in my project to add UITextField as a subView within UITableViewCell
- ...
0
votes
0answers
63 views
Using protocols & delegates in iPhone keyboard done button
I'm working on learning how protocols & delegates can be used to push between view controllers. I am trying to set up a delegate that navigates back to my first view controller from my second ...
0
votes
1answer
105 views
UITextField missing the paste functionality
I can provide code if needed, however my problem looks fundamendal. I have a UITextField in a view that can copy and paste in it. After the action I cannot do it again. It works only once.
What might ...
0
votes
2answers
72 views
Calling textfieldshouldreturn causes an exception to be called
The exception thrown is:
2012-09-21 00:46:56.885 Colors[3032:c07] -[UITextField value]: unrecognized selector sent to instance 0x718cce0 2012-09-21 00:46:56.887 Colors[3032:c07] *
...
0
votes
2answers
395 views
UITextField Delegate not working
I have the following code:
@interface MyCell : UITableViewCell<UITextFieldDelegate>
{
IBOutlet UITextField *txtFields;
}
- (IBAction)textFieldAction:(id)sender;
@property ...
0
votes
2answers
96 views
How to get second uitextfield calculated automatically after finishing typing in first uitextfield
I have 2 uitextfields (dollarPayTextField and rielPayTexField). After finishing typing in dollarPayTextField, I want rielPayTextField calculated automatically.
For example, total: 10 $, when I type ...




