Используйте методы NSString
pathComponents
и pathWithComponents
:
NSString *p = @"/img/david/PlayBasketball.jpg";
NSMutableArray *cmps = [NSMutableArray arrayWitharray:[p pathComponents]];
// cmps will be: ["/", "img", "david", "PlayBasketball.jpg"]
[cmps insertObject:@"HIRes" atIndex:2];
// You want index 2 because "/" is at index 0, and "img" is at index 1.
NSString *newPath = [NSString pathWithComponents:cmps];
// The pathWithComponents method will add the rest of the "/"'s for you
Теперь newPath
будет: @"/img/HiRes/david/PlayBasketball.jpg"
.