gpt4 book ai didi

cocoa - NSArray 越界检查

转载 作者:行者123 更新时间:2023-12-03 16:02:12 24 4
gpt4 key购买 nike

菜鸟问题.. 检查 NSArray 或 NSMutableArray 的索引是否存在的最佳方法是什么。我到处寻找都没有结果!!

这是我尝试过的:

if (sections = [arr objectAtIndex:4])
{
/*.....*/
}

sections = [arr objectAtIndex:4]
if (sections == nil)
{
/*.....*/
}

但都抛出“越界”错误,不允许我继续

(不要用 try catch 回复,因为这对我来说不是解决方案)

提前致谢

最佳答案

if (array.count > 4) {
sections = [array objectAtIndex:4];
}

关于cocoa - NSArray 越界检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9715261/

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