Top "Uitextfielddelegate" questions

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

How can I show a UIDatePicker inside a Popover on iPad using StoryBoard?

I have achieved to show the datepicker inside the popover, doing it programmatically as it is shown in UIDatePicker in …

ios ipad uidatepicker popover uitextfielddelegate
Format UITextField text without having cursor move to the end

I am trying to apply NSAttributedString styles to a UITextField after processing a new text entry, keystroke by keystroke. The …

ios swift uitextfield uitextfielddelegate
How can I edit a UILabel upon touching it in Swift?

I want to know how to edit the label of text while the app is running. Example: there will be …

ios swift uitextfielddelegate
Trying to bold titleLabel of UIButton in response to delegate method being called in iOS

I am working on an application where I am calling the UITextFieldDelegate method: - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)…

ios uibutton uitextfielddelegate
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 …

ios objective-c cocoa-touch uitextfield uitextfielddelegate
How do I identify which textField triggered textFieldDidEndEditing on dynamically created UITableCell containing 2 uiTextFields?

I am on iOS 6 xcode 4.6.2 using storyboards. I am using a dynamic UITableView which consists of a number of cells …

ios uitextfield uitextfielddelegate
Warning about assigning to id<UITextFieldDelegate> when I'm conforming to the protocol

My view controller is conforming to UITextFieldDelegate, yet when I try and set the .delegate field of my text field …

ios objective-c uitextfield uitextfielddelegate
Using same UITextFieldDelegate methods in custom UIView and in UIViewController simultaneously

I have an UIView (named HCTextFieldView) with subviews: UITextField and UILabel above. UITextField's delegate is equal to self. Delegate methods …

ios uitextfield appdelegate uitextfielddelegate
Implement a autocomplete textfield Objective C

I am starting to work with text fields, and I want to implement a functionality with a custom autocomplete. In …

ios objective-c uitextfield uitextview uitextfielddelegate
How to detect when user used Password AutoFill on a UITextField

I've implemented all the app and server changes necessary to support Password Autofill on iOS 11, and it works well. I'd …

ios uitextfield autofill uitextfielddelegate