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.
hi im a beginner to programming and have been stuck on this task for ages and seem to be getting …
objective-c nsstring uitextfield uitextfielddelegateI have a UITextField that when clicked brings up a number pad with a decimal point in the bottom left. …
ios uitextfield decimal-pointI'm working on an iphone app with multiple textfields on a viewcontroller. I'm a bit confused with resignfirstresponder and setting …
iphone objective-c uitextfieldI am building a data entry form in my iPhone app, and there are more data fields than will fit …
iphone interface-builder uiscrollview uitextfield data-entryI've got a test like below: let navnTextField = app.textFields["First Name"] let name = "Henrik" navnTextField.tap() navnTextField.typeText("Henrik") …
uitextfield ios9 xctest xcode-ui-testingHow I can get notified when UITextField becomeFirstResponder ? I can check like isFirstResponder or set to to become first Responder …
iphone ios uitextfield first-responder becomefirstresponderIn iOS 13, I'm getting a crash when accessing the UITextField _placeholderLabel.textColor label key. The key used to apply placeholder …
uitextfield ios13 placeholderHow do I bind an action to the Go button of the keyboard in iOS ?
ios objective-c uitextfield uikeyboard uitextfielddelegate- (BOOL)textFieldShouldReturn:(UITextField *)textField { [self checkRun:nil]; return YES; } I'm trying to complete the IBAction checkRun when the return …
ios objective-c uitextfield ibactionFirst, I setup up the keyboard for the UITextField to use the number with decimal style. So the user can …
ios validation uitextfield user-input