将所选值放入文本字​​段中

发布于 2024-11-01 15:27:10 字数 499 浏览 2 评论 0原文

当用户在 pickerView 中选择一个项目并按“确定”按钮时,我必须将所选项目放入 UITextField 中,那么在“确定”按钮的 IBAction 中我应该放置什么?提前谢谢:) 这是我的“确定”按钮代码:

-(IBAction)okButton{
    [billTotal setText:@"Hi"];//the text field name is billTotal, this didn't work :(

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.5];
    CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 480);
    pickerView.transform = transform;
    [UIView commitAnimations];  
}

when the user select an item in a pickerView and press OK button, i have to put the selected item in a UITextField, so in the IBAction of the OK button what should i put please ? thx in advance :)
this is my OK button code :

-(IBAction)okButton{
    [billTotal setText:@"Hi"];//the text field name is billTotal, this didn't work :(

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.5];
    CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 480);
    pickerView.transform = transform;
    [UIView commitAnimations];  
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-11-08 15:27:10

像这样的东西:

...
NSInteger selectedRow = [picker selectedRowInComponent:0];
billTotal.text = [NSString stringWithFormat:@"%d", selectedRow];
...

这不起作用

检查您的插座是否连接到文本字段,并且调用了“okButton”选择器

Something like this:

...
NSInteger selectedRow = [picker selectedRowInComponent:0];
billTotal.text = [NSString stringWithFormat:@"%d", selectedRow];
...

This didn't work

Check if your outlet connected to text field, and that "okButton" selector is called

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文