如何在文本字段中显示多个值?

发布于 2024-12-14 05:39:21 字数 110 浏览 0 评论 0原文

我是 iPhone 新手。我有四个数字按钮,如 1、2、3、4。当我单击任何按钮时,该值都会显示在文本字段中,但是当我单击两个按钮时,文本字段中只会显示一个值。

如何在文本字段中显示多个值?

I'm new to the iPhone. I have four number buttons like 1,2,3,4. When I click any button the value is displayed in a textfield, but when I click two buttons only one value is displayed in textfield.

How to display in multiple values in textfield?

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

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

发布评论

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

评论(1

流云如水 2024-12-21 05:39:21

您可以将新的字符串值添加到文本字段中已显示的值中,例如,通过以下方式:

UITextField *field; // <- reference to your UITextField
NSString *value = [[NSNumber numberWithInt:1] stringValue]; // <- value to add
field.text = [NSString stringWithFormat:@"%@%@", field.text, value];

You can add new string value to already displayed value in your text field, for example, in following way:

UITextField *field; // <- reference to your UITextField
NSString *value = [[NSNumber numberWithInt:1] stringValue]; // <- value to add
field.text = [NSString stringWithFormat:@"%@%@", field.text, value];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文