Python can make a list with continuous numbers like this:
numbers=range(1,10); // >> [1,2,3,4,5,6,7,8,9]
How to implement this in Objective-c?
|
Python can make a list with continuous numbers like this:
How to implement this in Objective-c? |
|||||||||||
|
|
Reading your statement "
Just need an array with continuous numbers,I do not want to init it with a loop" lets me ask: what is more important for you: to have an
Iterating over this set is as simple as iterating over an array and does not need NSNumbers. |
|||
|
|
|
You can use
NSRange is simply a struct and not like a Python range object.
So you have to use for loop to access its members.
|
|||
|
|
|
Objective-C (or Foundation actually) does not have a special function for this. You could use:
If you want to use it more often you could optionally put it in an category. |
|||||||||
|
|
You can subclass NSArray with a class for ranges. Subclassing NSArray is quite simple:
You can do more, but you don't need to. Here is a sketch missing some checking code:
You can use this as follows:
If you |
||||
|
|