hi all
I want my animations to be created according to a name considering file (image) existence but I can't make these lines of code work. Have you any other method to test if a file exist ?
NSFileManager *fm = [NSFileManager defaultManager];
BOOL fileExists = [fm fileExistsAtPath:[NSString stringWithFormat:@"%@%04d.png", animName , i]] ;
while (fileExists)
i++;
thanks