CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of iphone
NSData *soundData = [NSData dataWithContentsOfURL:url];
AVAudioPlayer  *avPlayer = [[AVAudioPlayer alloc] initWithData:soundData error: nil];
[avPlayer play];
by Yuzhen Situ   June 03, 2010 @ 1:28am
479 Views
no comments
 
C++
NSArray *myImages = [NSArray arrayWithObjects: 
      [UIImage imageNamed:@"myImage1.png"], 
      [UIImage imageNamed:@"myImage2.png"], 
      [UIImage imageNamed:@"myImage3.png"], 
      [UIImage imageNamed:@"myImage4.gif"], nil]; 
UIImageView *myAnimatedView = [UIImageView alloc]; 
[myAnimatedView initWithFrame:[self bounds]]; 
myAnimatedView.animationImages = myImages; 
myAnimatedView.animationDuration = 0.25;
myAnimatedView.animationRepeatCount = 0;
by Yuzhen Situ   May 26, 2010 @ 6:27pm
190 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate