如何使 2 个标签彼此相加?

发布于 2024-10-23 16:05:34 字数 168 浏览 3 评论 0原文

你好,我对 Xcode 有点陌生,我正在尝试制作一个应用程序,你按下一个按钮,数字就会上升;我有 2 个按钮和 2 个标签。我已经完成了两个标签的计数,但现在我希望两个标签中的数字相加并显示在不同的标签中。我是否可以向按钮添加任何行,以使它们也在其他标签中计数,或者我是否需要有单独的操作和/或按钮?

谢谢

Hi I'm kinda new to Xcode and I'm trying to make an app where you press a button and the number will go up; and I have 2 buttons and 2 labels. I've got it to where the 2 labels will count up, but now I'm wanting the numbers from both labels to add together and show in a different label. Is there any line I can add to the buttons to make them just count up in the other label as well or do I need to have a separate action and/or button?

Thanks

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

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

发布评论

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

评论(2

無心 2024-10-30 16:05:34

直接说:

int sum = [[label1 text] intValue] + [[label2 text] intValue];
label3.text = [NSString stringWithFormat:@"%@", sum];

应该可以,只需确保将我使用的指针替换为您正在使用的指针即可。

Straight up:

int sum = [[label1 text] intValue] + [[label2 text] intValue];
label3.text = [NSString stringWithFormat:@"%@", sum];

Should work, just make sure to replace the pointers I used with the ones you're using.

小耗子 2024-10-30 16:05:34

esqew 的答案可以解决问题,但格式说明符不正确。

如果变量 sum 实际上是一个 int ...

label3.text = [NSString stringWithFormat:@"%@", sum];

应该是:

label3.text = [NSString stringWithFormat:@"%d", sum];

%@ 用于 Objective-C 对象,int 不是 Objective-C 对象。

参考:

http://developer.apple。 com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html

esqew's answer would do the trick, but the format specifier is incorrect.

If the variable sum is in fact an int ...

label3.text = [NSString stringWithFormat:@"%@", sum];

should be:

label3.text = [NSString stringWithFormat:@"%d", sum];

%@ is for Objective-C objects, an int is not an Objective-C object.

Reference:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html

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