Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. UIImage with image sequences
  2. animationView = [[UIImageView alloc] initWithFrame:CGRectMake(157,354, 45, 100)] ;
  3. animationView.animationImages = [NSArray arrayWithObjects:
  4.        
  5. animationView.animationDuration = .65;
  6.     animationView.animationRepeatCount = 0;
  7.     [animationView startAnimating];
  8.  [self.view addSubview:animationView];
  9.     [animationView release];