another thing i see thats incorrect is
Code:
[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"img000%d.png",(start+i+1)] ofType:nil]
;
it should be
Code:
[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"img000%d",(start+i+1)] ofType:@"png"];