已结束。此问题是
not reproducible or was caused by typos .它目前不接受答案。
Best Answer-推荐答案 strong>
2147483647 是 NSNotFound(在某些情况下也称为-1)。您测试测试成功或失败的方式有问题,因为 Cocoa 本身的行为与宣传的完全一样。
NSInteger indexOfCell = [[NSArray new] indexOfObject""];
NSLog(@"%d", indexOfCell); // some number
NSLog(@"%d", NSNotFound); // the same number
NSLog(@"%d", indexOfCell == NSNotFound); // 1, i.e. YES
自己试试吧。
关于ios - NSNotFound 比较不起作用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21321067/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |