I’m searching for a way to populate a NSMutableArray with images that aren’t in the Springboard.app (it is a tweak for iPhone)
If I write this:
for (int i=startImage; i<=35; i++){
if ((i<10)){
[images addObject[UIImage imageNamed[NSString stringWithFormat:@"logoFlareAnim_00%i",i]];
}
else {
[images addObject[UIImage imageNamed[NSString stringWithFormat:@"logoFlareAnim_0%i",i]]];
}
}
but I can’t specify …
In my code images Was an NSMutableArray my problem was : add images that are in a path not in the document folder of an iPhone App … It was for a MobileSubstrate tweak and the solution was navigate in the filesystem with ../../ to go to the root and specify the path es: if i’m in /Library/MobileSubstrate I use ../../PathOfTheImage