- UIImage with image sequences
- animationView = [[UIImageView alloc] initWithFrame:CGRectMake(157,354, 45, 100)] ;
- animationView.animationImages = [NSArray arrayWithObjects:
- animationView.animationDuration = .65;
- animationView.animationRepeatCount = 0;
- [animationView startAnimating];
- [self.view addSubview:animationView];
- [animationView release];