reembertoparada asks:
I have a loop from 1 to 30 and I want to create an NSArray with those values inside. Can you give me an idea on how to do this.
That’s an easy after-dinner exercise. First you need to take an NSMutableArray instead of an NSArray because regular objects without “mutable” in their class name cannot be changed. This is especially vital to know for arrays and dictionaries.