Odpowiedzi:
Najpierw musisz dostosować się do UITextFieldDelegate
protokołu w pliku nagłówkowym View / ViewController w następujący sposób:
@interface YourViewController : UIViewController <UITextFieldDelegate>
Następnie w pliku .m musisz zaimplementować następującą UITextFieldDelegate
metodę protokołu:
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
[textField resignFirstResponder];
upewnia się, że klawiatura została odrzucona.
Upewnij się, że ustawiasz swój view / viewcontroller jako delegata UITextField po zainicjowaniu pola tekstowego w .m:
yourTextField = [[UITextField alloc] initWithFrame:yourFrame];
//....
//....
//Setting the textField's properties
//....
//The next line is important!!
yourTextField.delegate = self; //self references the viewcontroller or view your textField is on
Zaimplementuj metodę UITextFieldDelegate w następujący sposób:
- (BOOL)textFieldShouldReturn:(UITextField *)aTextField
{
[aTextField resignFirstResponder];
return YES;
}
Pełną dyskusję na ten temat zawiera sekcja Zarządzanie klawiaturą .
Twoje UITextFields powinny mieć obiekt delegata (UITextFieldDelegate). Użyj poniższego kodu w swoim pełnomocniku, aby klawiatura zniknęła:
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
}
Powinien działać jak dotąd ...
Po naciśnięciu klawisza powrotu zadzwoń:
[uitextfield resignFirstResponder];
Po dłuższym czasie szukania czegoś, co ma sens, to właśnie złożyłem i zadziałało jak urok.
.h
//
// ViewController.h
// demoKeyboardScrolling
//
// Created by Chris Cantley on 11/14/13.
// Copyright (c) 2013 Chris Cantley. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UITextFieldDelegate>
// Connect your text field to this the below property.
@property (weak, nonatomic) IBOutlet UITextField *theTextField;
@end
.m
//
// ViewController.m
// demoKeyboardScrolling
//
// Created by Chris Cantley on 11/14/13.
// Copyright (c) 2013 Chris Cantley. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// _theTextField is the name of the parameter designated in the .h file.
_theTextField.returnKeyType = UIReturnKeyDone;
[_theTextField setDelegate:self];
}
// This part is more dynamic as it closes the keyboard regardless of what text field
// is being used when pressing return.
// You might want to control every single text field separately but that isn't
// what this code do.
-(void)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
}
@end
Mam nadzieję że to pomoże!
Ustaw delegata UITextField na swój ViewController, dodaj punkt odniesienia odwołujący się między właścicielem pliku a UITextField, a następnie zaimplementuj tę metodę:
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
if (textField == yourTextField)
{
[textField resignFirstResponder];
}
return NO;
}
Dodaj to zamiast wstępnie zdefiniowanej klasy
class ViewController: UIViewController, UITextFieldDelegate {
Aby usunąć klawiaturę po kliknięciu poza nią
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
self.view.endEditing(true)
}
i aby usunąć klawiaturę po naciśnięciu klawisza Enter
dodaj tę linię w viewDidLoad ()
inputField jest nazwą używanego pola textField.
self.inputField.delegate = self
i dodaj tę funkcję
func textFieldShouldReturn(textField: UITextField) -> Bool {
textField.resignFirstResponder()
return true
}
Swift 2:
to jest to, co robi się, aby zrobić wszystko!
zamknij klawiaturę Done
przyciskiem lub Touch outSide
, Next
aby przejść do następnego wejścia.
Najpierw zmień plik TextFiled Return Key
na Next
w StoryBoard.
override func viewDidLoad() {
txtBillIdentifier.delegate = self
txtBillIdentifier.tag = 1
txtPayIdentifier.delegate = self
txtPayIdentifier.tag = 2
let tap = UITapGestureRecognizer(target: self, action: "onTouchGesture")
self.view.addGestureRecognizer(tap)
}
func textFieldShouldReturn(textField: UITextField) -> Bool {
if(textField.returnKeyType == UIReturnKeyType.Default) {
if let next = textField.superview?.viewWithTag(textField.tag+1) as? UITextField {
next.becomeFirstResponder()
return false
}
}
textField.resignFirstResponder()
return false
}
func onTouchGesture(){
self.view.endEditing(true)
}
w swift powinieneś delegować UITextfieldDelegate , ważne jest, aby o tym nie zapomnieć, w viewController, na przykład:
class MyViewController: UITextfieldDelegate{
mytextfield.delegate = self
func textFieldShouldReturn(textField: UITextField) -> Bool {
textField.resignFirstResponder()
}
}
Możesz dodać IBAction do uiTextField (zdarzenie wydania to „Did End On Exit”), a IBAction może nazwać hideKeyboard,
-(IBAction)hideKeyboard:(id)sender
{
[uitextfield resignFirstResponder];
}
możesz również zastosować go do innych pól tekstowych lub przycisków, na przykład możesz dodać ukryty przycisk do widoku, klikając go, aby ukryć klawiaturę.
Możesz wypróbować tę podklasę UITextfield, w której możesz ustawić warunek dla tekstu, aby dynamicznie zmieniać UIReturnKey:
https://github.com/codeinteractiveapps/OBReturnKeyTextField