Length of an Array in Objective C - Stack Overflow

Length of an Array in Objective C - Stack Overflow

瀏覽:1239
日期:2025-06-15
There is no such thing as array.length in C. An int array in Objective-C is exactly the same as an int array in C. If it's statically defined like int foo[5], then you can do sizeof(foo) to get the size — but only in the same function foo is defined in (t...看更多