我的代码如下:
- (IBAction)loopBtn:(id)sender {
txtLoopBtn1.keyboardType = UIKeyboardTypeNumberPad;
[txtLoopBtn1 becomeFirstResponder];
[sender resignFirstResponder];
}
我loopBtn
正在以响应者的身份调用键盘,txtLoopBtn1
就像教我- (IBAction)loopBtn:(id)sender
使用此代码在我的内部添加此代码的人一样:
txtLoopBtn1.keyboardType = UIKeyboardTypeNumberPad;
[txtLoopBtn1 becomeFirstResponder];
[sender resignFirstResponder];
在我按下 loopBtn 后,键盘显示。我添加了一个数字,但它没有显示在labelLoop
.
我已经写下了显示我的代码的代码,但它失败了,然后我把它全部删除了。现在我的loopBtn
代码就像上面的示例一样。
我只想从小键盘获取输入,然后在 labelLoop 上显示,但我不知道如何实现它。我很抱歉我的英语。
如果您不了解我的问题,请先不要生气。我只是不知道如何用我的谷歌翻译英语向你解释。