gpt4 book ai didi

objective-c - 比较 objective-C 中的 2 个字符串

转载 作者:行者123 更新时间:2023-12-05 08:13:32 24 4
gpt4 key购买 nike

我写了下面的代码:

   if (depSelectedIndice > -1 && comSelectedIndice> -1)
{
NSLog(@"depart elemet : %d ",depSelectedIndice);
NSLog(@"depart elemet : %d ",comSelectedIndice);
NSLog(@"ok1");
NSString *choosedDate =[NSString stringWithFormat:@"%@%@",[deparatureDates objectAtIndex:depSelecif (depSelectedIndice > -1 && comSelectedIndice> -1)
{
NSLog(@"depart elemet : %d ",depSelectedIndice);
NSLog(@"depart elemet : %d ",comSelectedIndice);
NSLog(@"ok1");
NSString *choosedDate =[NSString stringWithFormat:@"%@%@",[deparatureDates objectAtIndex:depSelectedIndice], [goingBackDates objectAtIndex:comSelectedIndice]];
NSLog(@"0000000000001");

NSLog(@" number of element : %d", [allCombinations count]);
// for (int j=0; j<[allCombinations count]; j++)
// {
// NSLog(@"111111111111111111");
// // NSString *date = [[allCombinations objectAtIndex:j] objectForKey:@"keydate"];
// NSLog(@"22222222222222222222");
// if([date isEqualToString:choosedDate])
// {
// depPrice.text=@"1";
// comPrice.text=@"1";
// price.text=@"3";
//
// }
// }
}

allCombinations 是在 .h 中声明的 NSArray,我有 initilase 并在另一个方法中使用它。我不能在这种方法中使用? :/

但是我遇到了一个崩溃。我真的不知道问题出在哪里,但我认为是在比较 if(date==choosedDate)?请帮忙

最佳答案

当你在像 NSString * 这样的指针上使用 == 时,它是在比较内存地址,而不是比较字符串的值。

下面将实际比较字符串值:

if([date isEqualToString:choosedDate])

关于objective-c - 比较 objective-C 中的 2 个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6118574/

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