Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

hide keyboard for text field in swift programming language

I have little experience in Objective-C. I want to hide the keyboard for a text field using the Swift programming language.

I also tried this

func textFieldShouldReturn(textField: UITextField!) -> Bool // called when 'return' key pressed. return NO to ignore.
{
    return true;
}

But the method is not getting triggered when I hit return. Anyone have any luck with this?


1 Answers

I think the Problem is with setting the Delegate.

Please set textfield Delegate to your ViewController like this

class ViewController: UIViewController,UITextFieldDelegate {

and then create the IBOutlet for your text field like this

@IBOutlet var txtTest : UITextField = nil

make sure that it is connected to your text field on your view in storyboard.

finally set its Delegate using

txtTest.delegate=self

We are almost done. Now place this delegate function into your class.

func textFieldShouldReturn(textField: UITextField!) -> Bool // called when 'return' key pressed. return NO to ignore.
    {
        textField.resignFirstResponder()
        return true;
    }

Hope this will solve your issue.

like image 189
Ravi_Parmar Avatar answered Sep 12 '25 17:09

Ravi_Parmar