Length of an `int` array in Objective C
There isn't anything specific to Objective-C with an array of ints. You would use the same technique as if you were using C.
sz = (sizeof foo) / (sizeof foo[0]);
You can use [XYZ count] to get the length of the array