gpt4 book ai didi

iphone - 指针和整数问题之间的比较

转载 作者:行者123 更新时间:2023-12-01 17:16:43 26 4
gpt4 key购买 nike

我有一条条件语句,该语法需要一些帮助:

if (mySegment.selectedSegmentIndex == 0 && [[[dict objectForKey:[keys objectAtIndex:row]] objectAtIndex:0] == 8 ) {
NSLog(@"test");
}

我收到 comparison between a pointer and integer problem警告。我需要一个基于条件的段值选择,然后将其与从字典对象返回的值进行比较。

谢谢你的帮助。

最佳答案

dict值转换为整数,然后进行比较

试试这个:

if (mySegment.selectedSegmentIndex == 0 && [[[dict objectForKey:[keys objectAtIndex:row]] objectAtIndex:0]intValue] == 8 ) {
NSLog(@"test");
}

关于iphone - 指针和整数问题之间的比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6897720/

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