以编程方式比较 UITextField 中的数字

发布于 2024-11-30 11:53:46 字数 209 浏览 2 评论 0原文

我正在尝试一些基本的 Objective-C iPhone 编码,并且正在尝试比较 if 语句中 UITextField 中的数字。

if (UITextField.text == @"1") { 做某事 我

想我必须将 UITextField 中的数字转换为可以与 1 进行比较的数字,但我不确定是什么或如何转换。 有人能指出我正确的方向吗?

I'm trying out some basic Objective-C iPhone coding and I'm trying to compare a number in a UITextField in an if statement.

if (UITextField.text == @"1") {
doSomething
}

I think I have to convert the number in the UITextField to something that can be compared with the 1, but I'm not sure what or how.
Could someone point me in the right direction?

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

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

发布评论

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

评论(1

瘫痪情歌 2024-12-07 11:53:46

您可以通过以下两种方式之一来完成此操作:

更好的方法是将 UITextField 文本转换为整数值,使用 NSString 函数 -(int)intValue;

如:

if ([UITextField.text intValue] == 1) { doSomething}

或者,您可以比较两个字符串,但您必须使用字符串比较函数,而不是 equals,因为您正在尝试比较字符串的文本,而不是指针。

if ([UITextField.text isEqualToString:@"1"]) { doSomething}

You can do it in one of two ways:

The better way would be to convert the UITextField text to an integer value, using the NSString function -(int)intValue;

As in:

if ([UITextField.text intValue] == 1) { doSomething}

Alternatively, you can compare two strings, but you have to use a string comparison function, not equals, becuase you're trying to compare the text of the string, not the pointer.

if ([UITextField.text isEqualToString:@"1"]) { doSomething}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文