Problem in adding objects in array
Assume that i have one array like this,
NSArray * arr=[[NSArray alloc] initWithObjects:@"1",@"2",@"",@"4",@"5",nil];
for me once it reaches empty object (index 2),it should take next object and go on..
output has 1 2 4 5 ..
how to make condition?
Thanks in advance..
|