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

Here's what I want to do:

NSRange r = NSMakeRange(0,5);
id a = [NSMutableArray a];
[a addObject: r]; // but NSRange is not a NSObject *

With a boolean, I'd use code like this:

[a addObject: [NSNumber numberWithBool: YES]];

or with an integer:

[a addObject: [NSNumber numberWithInteger: 3]];

So what's the equivalent with a NSRange? What I don't really want to do is create my own subclass of NSObject to accomplish this. Surely there's a way with what Apple's already provided?

share|improve this question

4 Answers

up vote 32 down vote accepted

Use NSValue's +valueWithRange:.

[a addObject:[NSValue valueWithRange:r]];
...

NSRange r = [[a objectAtIndex:4] rangeValue];
share|improve this answer
[NSValue valueWithRange:r];

and get it back out with:

NSRange r = [rangeObject rangeValue];
share|improve this answer

If you need to store the NSRange in a property list, you can also turn an NSRange into an NSString using the NSStringFromRange function. And then, you can turn that string back into a range using the NSRangeFromString function.

share|improve this answer
Upvoting because this is clever and useful, but NSValue seems less elbowy. Thanks. :) – Steven Fisher Oct 22 '10 at 17:10
Thanks! I just learned about NSValue myself from the other answers (thanks @mipadi and @KennyTM), and it's definitely less elbowy than my suggestion. To be more deserving of your kind upvote, I updated my answer to mention that the string version can be useful with storing ranges in property lists. – James Huddleston Oct 22 '10 at 17:18

One other option might be to add those ranges into an NSIndexSet, depending on how you intend to use them next.

share|improve this answer

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.