Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have the following code:

NSUInteger i, count = [pages count];
for (i = 0; i < count; i++) {
  Page* page = (Page *)[pages objectAtIndex:i];
  [page setPageNumber:[i unsignedIntValue]];
}

PageInfo.pageNumber is a size_t.

Is it still necessary to use [i unsignedIntValue] or do I just assign i directly?

share|improve this question

1 Answer

up vote 2 down vote accepted

NSUInteger is not an object (it's a typedef for unsigned int on 32-bit or unsigned long on 64-bit; NSNumber, however, is an object), so attempting to call unsignedIntValue on it will probably cause a crash. You can just pass it in directly.

share|improve this answer
Hmm, yeah, I now see the warning when I try to call unsignedIntValue. Weird for Xcode's autocomplete to suggest that it was a valid call. Oh well. Thanks! – Altealice Sep 17 '10 at 11:51

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.