如果 UITextField 或 NSString 为空

发布于 2024-09-12 17:31:12 字数 118 浏览 5 评论 0原文

如果我想检查 UITextFieldNSString 是否为空,我可以将其与 NULLnil 进行比较吗?

If I want to check whether a UITextField or NSString is empty, can I compare it with NULL or nil?

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

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

发布评论

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

评论(3

℡寂寞咖啡 2024-09-19 17:31:12

您建议的两种方法都不是万无一失的。最好的测试是:

if ([myTextField.text length] > 0) ...

  if ([myString length] > 0) ...

Neither of the methods you suggest are foolproof. The best tests are:

if ([myTextField.text length] > 0) ...

or

  if ([myString length] > 0) ...
笨死的猪 2024-09-19 17:31:12

如果我想检查文本字段或字符串是否为空,我可以将其与 NULL 或 nil 进行比较吗?

不。

空字符串对象(不包含任何字符的字符串对象)或包含空字符串对象的文本字段对象与 nil 不同,后者根本就不是对象。您需要询问(文本字段的)字符串 多长,或者询问是否等于 您拥有的空字符串手(@"")。

NULL 虽然也是一个空指针,但应该用于一般指针,而不是指向 Objective-C 实例(您有更具体的 nil)或类(例如您有更具体的Nil)。

if i want to check whether a textfield or string is empty i compare it with NULL or nil?

No.

An empty string object (a string object containing no characters) or a text-field object containing an empty string object is not the same as nil, which is no object at all. You need to ask the (text field's) string how long it is, or ask it whether it is equal to an empty string you have on hand (@"").

NULL, while also a null pointer, should be used for general pointers, not pointers to Objective-C instances (for which you have the more specific nil) or classes (for which you have the more specific Nil).

Hello爱情风 2024-09-19 17:31:12

我遇到了类似的问题,但除此之外没有其他方法对我有用:

NSString *string = textfield.text;
if ([string isEqualToString:@""]) {
    ....
}

I had a similar problem but no method other than this worked for me:

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