I am new to Objective-C but at a decent level with java, let's say for example I have a loop.
for (int i=0; i<3; i++){
NSString *(newstring+'i');
}
I want to end up with newstring0, newstring1, newstring2 for example.
How is this possible in Objective c?
Thanks, Oli