xcode 检查是否有 aobjectAtIndex 或检查数组长度
我在任何地方都找不到这个,我可能正在搜索错误的术语或单词,但我只需要知道如何检查数组是否达到一定长度:
if ([scores objectAtIndex:3]){
//code
}
如果数组还没有这么长,这会出现错误并崩溃,但是当然,这应该只是检查是否有索引,如果没有则继续?
如何在应用程序不崩溃的情况下检查这一点?
I cant find this any where, I may be searching the wrong terms or words but I just need to know how to check if an array is a certain length:
if ([scores objectAtIndex:3]){
//code
}
This comes up with an error and crashes if the array isnt this long yet, but surly this should just check if there is an index, and if not move on??
How to I check this without the app crashing??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSArray 的
count
方法返回数组中对象的数量。如果[myArray count]
返回n
,则有效索引为0
到n - 1
。如果索引无效,则不会自动继续。在尝试访问索引之前,您需要确保该索引有效。count
method of NSArray returns the number of objects in the array. If[myArray count]
returnsn
then valid indexes are0
ton - 1
. There is no automatic move on if the index is not valid. Before trying to access an index you need to make sure that the index is valid.