检查文本字段是否为空
我目前将对象添加到一个数组中,该数组的标签取自用户的文本字段输入。
目前,即使该字段为空,它也会添加一个条目。
我将文本字段分配给一个字符串,然后想检查它是否为零,如果是,则不要将其添加到数组中。
我习惯了java,它可以通过类似
if(enteredText.length > 0){ //add to array}
我现在在代码中尝试以下
if(title != nil)
{
[plistArray addObject:title];
[plistArray writeToFile:filepath atomically: YES];
}
操作来完成,但它似乎不起作用,并且没有可用的点方法来获取输入文本的长度。
我怎样才能在 Obj-C 中实现这一目标?
问候
I currently add objects to an array with a label taken from the textfield input from the user.
At the moment it adds an entry even if the field is blank.
I assign the textfield to a string and then want to check if it is nil, if it is then dont add it to the array.
I am used to java where it could be done with something like
if(enteredText.length > 0){ //add to array}
I am trying the following in my code now
if(title != nil)
{
[plistArray addObject:title];
[plistArray writeToFile:filepath atomically: YES];
}
but it doesnt seem to work and there are no dot methods available to get the length of the entered text.
How could I achieve this in Obj-C?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSString 的 -length 方法
Use the -length method of NSString