gpt4 book ai didi

ios - 按下 Enter 键时打印 NSLog

转载 作者:行者123 更新时间:2023-11-28 18:33:49 24 4
gpt4 key购买 nike

我正在尝试创建一个非常基本的应用程序,它有一个文本字段,并在按下返回键时使用 NSLog 打印出输入到文本字段中的值。代码如下。到目前为止,将文本放入文本字​​段并按下回车键时似乎没有任何反应。有人可以帮忙吗?

@property (weak, nonatomic) IBOutlet UITextField *textfld;

- (void)viewDidLoad
{
[super viewDidLoad];
self.textfld.delegate = self;
// Do any additional setup after loading the view, typically from a nib.
}

- (void)textFieldDidBeginEditing:(UITextField *)textfld {

}


- (void)textFieldDidEndEditing:(UITextField *)textfld {

NSLog(@"text is : %@",textfld.text);

}

http://pastie.org/9078792

http://pastie.org/9078793

最佳答案

ViewController.m中使用- (BOOL)textFieldShouldReturn:(UITextField *)textField委托(delegate)方法UITextField

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
NSLog(@"text is : %@",textfld.text);
return YES:
}

textFieldShouldReturn: 询问委托(delegate)文本字段是否应处理按下返回按钮。阅读more .

关于ios - 按下 Enter 键时打印 NSLog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23052252/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com