Question

How can I implement it in the new language of Apple:

Objective-C code:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        for (UIView *view in self.view.subviews)
        [view resignFirstResponder];
}

I have tried to do so. But the keyboard does not disappear:

Swift code:

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
    super.touchesBegan(touches, withEvent: event)
    self.view.resignFirstResponder()
}
Was it helpful?

Solution

You could probably go with:

self.view.endEditing(true)

OTHER TIPS

Try this

self.view.endEditing(true)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top