检查文本字段是否为空

发布于 2024-09-07 19:07:40 字数 453 浏览 3 评论 0原文

我目前将对象添加到一个数组中,该数组的标签取自用户的文本字段输入。

目前,即使该字段为空,它也会添加一个条目。

我将文本字段分配给一个字符串,然后想检查它是否为零,如果是,则不要将其添加到数组中。

我习惯了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 技术交流群。

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

发布评论

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

评论(1

情归归情 2024-09-14 19:07:40

使用 NSString 的 -length 方法

if(title != nil && [title length])
{
    [plistArray addObject:title];
    [plistArray writeToFile:filepath atomically: YES];
}

Use the -length method of NSString

if(title != nil && [title length])
{
    [plistArray addObject:title];
    [plistArray writeToFile:filepath atomically: YES];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文