NSMutableArray * oneText = [[NSMutableArray alloc] init];
[oneText addObject:[arraySystem objectAtIndex:[countImage intValue]]];
[oneText addObject:@".png"];
NSString *oneTextText=[oneText objectAtIndex:0];
[oneTextText stringByAppendingString:[oneText objectAtIndex:1]];
NSLog(oneTextText);
Почему вышеприведенный код не может печатать 'Lenght.png'? [arraySystem objectAtIndex:[countImage intValue]]
равно 'Длина'
печатает только «Длина»