如果 UITextField 或 NSString 为空
如果我想检查 UITextField
或 NSString
是否为空,我可以将其与 NULL
或 nil
进行比较吗?
If I want to check whether a UITextField
or NSString
is empty, can I compare it with NULL
or nil
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您建议的两种方法都不是万无一失的。最好的测试是:
或
Neither of the methods you suggest are foolproof. The best tests are:
or
不。
空字符串对象(不包含任何字符的字符串对象)或包含空字符串对象的文本字段对象与
nil
不同,后者根本就不是对象。您需要询问(文本字段的)字符串 多长,或者询问是否等于 您拥有的空字符串手(@""
)。NULL
虽然也是一个空指针,但应该用于一般指针,而不是指向 Objective-C 实例(您有更具体的nil
)或类(例如您有更具体的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 specificnil
) or classes (for which you have the more specificNil
).我遇到了类似的问题,但除此之外没有其他方法对我有用:
I had a similar problem but no method other than this worked for me: