Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having problem with using subArrayWithRange.

Basically, what I want to do is make subarray of 50 elements or less from mainArray for example if mainArray has 70 elements I want a sortedArray to have an array of first 50 elements in first index and another array of 20 elements in the last index of sortedArray

Hope I am clear what I want to do get.

anyway, my code is

for (int i=0; i<=ceilLoopCount; i++) {
    [sortedArray insertObject:[testArray subarrayWithRange:NSMakeRange(0,50)] atIndex:i]; 
} 

and the problem I am having is I only get the same 50 elements in all the array

Please help, Pondd

share|improve this question

1 Answer

up vote 4 down vote accepted
NSUInteger size = 50;

for (NSUInteger i = 0; i * size < [testArray count]; i++) {
  NSUInteger start = i * size;
  NSRange range = NSMakeRange(start, MIN([testArray count] - start, size));
  [sortedArray addObject:[testArray subarrayWithRange:range]];
}
share|improve this answer
Hi Thankz for help but I am getting Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSArray subarrayWithRange:]: index 449 beyond bounds [0 .. 433]' Not sure what you meant by "- loc" – Suwitcha Sugthana Jun 2 '11 at 6:32
I've edited my answer; give it a go now. – Chris Doble Jun 2 '11 at 6:36
it works perfect now, many thankz – Suwitcha Sugthana Jun 2 '11 at 6:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.