0

我的代码如下:

- (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 上显示,但我不知道如何实现它。我很抱歉我的英语。

如果您不了解我的问题,请先不要生气。我只是不知道如何用我的谷歌翻译英语向你解释。

4

1 回答 1

0

我已经解决了我的问题。我将 txtLoopButton 放置在我的视图中 loopBtn 旁边(用 txtLoopButton 替换我的 labelLoop),没有边框,然后我删除了我的 labelLoop。因为有人教过我,他说如果我想使用下面的代码,我必须把我的 textLoopBtn 放在我的视野之外。

   txtLoopBtn1.keyboardType = UIKeyboardTypeNumberPad;
    [txtLoopBtn1 becomeFirstResponder];

困惑,如何用我有限的英语解释。也许我误解了他说的话。但是感谢您观看我的菜鸟问题。

于 2012-06-24T12:40:56.067 回答