Hi friends... I m doing this-
for(int i=0;i>count;i++)
{
NSArray *temp=[[NSArray alloc]initWIthObjects]i,nil];
NSLog(@"%i",temp);
}
it returns me 0,1,2,3....count one by one. but i want array with appending these values {0,1,2,3,4,5...}. This is not a big deal but i m unable to find it....sorry...i am new to Iphone.