gpt4 book ai didi

objective-c - 如何编写 IF ELSE 来检查数组的字符串内容?

转载 作者:行者123 更新时间:2023-12-03 18:05:51 27 4
gpt4 key购买 nike

我正在尝试编写一个 IF ELSE 语句来启用运输,如果用户不添加地址,则数组中的两个项目的数组内容将保留为“-”和“-”。我想检查它们是否在数组中,如果在,那么我想启用发货。

这是获取数组的代码:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fullFileName = [NSString stringWithFormat:@"%@/arraySaveFile", documentsDirectory];
NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:fullFileName];

如何编写第一行来查找“-”和“-”?

if ([fullFileName isEqualToString:@"-","-"]) 
{
[nnNEP EnableShipping];
}
else {
[nnNEP DisableShipping];
}

谢谢

迈克尔

最佳答案

我认为您想要检查数组前两项的内容而不是 fullFileName。

例如:

if ([[array objectAtIndex:0] isEqualToString:@"-"] 
&& [[array objectAtIndex:1] isEqualToString:@"-"])
{
[nnNEP EnableShipping];
}
else
{
[nnNEP DisableShipping];
}

关于objective-c - 如何编写 IF ELSE 来检查数组的字符串内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2480588/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com