Top "Uitextfielddelegate" questions

The methods declared by the UITextFieldDelegate protocol allow the adopting delegate to respond to messages from the UITextField class.

How to move cursor from one text field to another automatically in swift ios programmatically?

func textFieldDidBeginEditing(textField: UITextField) { scrlView.setContentOffset(CGPointMake(0, textField.frame.origin.y-70), animated: true) if(textField == firstDigit){ textField.becomeFirstResponder() secondDigit.resignFirstResponder() } …

ios swift uitextfielddelegate
iPhone: UITextField End Editing event doesn't hide keyboard

I want to hide keyboard on UITextField end editing event but somehow I am not able to get following code …

iphone keyboard uitextfield hide uitextfielddelegate
Allow only alphanumeric characters for a UITextField

How would I go about allowing inputting only alphanumeric characters in an iOS UITextField?

ios uitextfield uitextfielddelegate
Why is textFieldDidEndEditing: not being called?

I've got a UITextField, and when text gets entered into that, I want to obtain the doubleValue from the text …

ios objective-c cocoa-touch uitextfielddelegate
Change custom text field background color and text color IOS Swift

I'm using following custom text field class to change appearance of the text field. Now I need to change text …

ios swift uitextfielddelegate
Properly Subclassing UITextField in swift

So i have these textfields that i realised that they all have same properties, so i created new class called "…

ios swift uitextfield subclass uitextfielddelegate
disable button when textfields are empty

hi im a beginner to programming and have been stuck on this task for ages and seem to be getting …

objective-c nsstring uitextfield uitextfielddelegate
iOS Swift Pass Closure as Property?

Let's say I have a custom UIView, lets call it MyCustomView. Inside this view is a UITextField property. Suppose my …

ios uitextfield closures swift uitextfielddelegate
How to get UITableViewCell's index from its edited UITextField

I'm working on an iPhone based BI project. I have a UITextField in a UITextViewCell, the UITextFieldDelegate points to my …

iphone uitableview uitextfield uitextfielddelegate