21
Returnキーを押したときにプログラムによってキーボードiOSを閉じる方法
UITextFieldプログラムで作成しUITextField、viewControllerのプロパティを作成しました。画面に戻るとタッチでキーボードを閉じる必要があります。画面をタッチして閉じることができましたが、Returnキーを押しても機能しません。 UITextFieldプロパティとして作成せずに、ストーリーボードを使用して、オブジェクトを直接割り当てて初期化する方法を見てきました。可能ですか? .h #import <UIKit/UIKit.h> @interface ViewController : UIViewController <UITextFieldDelegate> @property (strong, atomic) UITextField *username; @end .m #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.view.backgroundColor = [UIColor blueColor]; self.username = [[UITextField …
105
ios
keyboard
uitextfield