Slide effect + background music

Source: Internet
Author: User

 Iphone slide effect + background music
Today I got a few good-looking images, and I found out how to implement the slide effect of the images. This has also been achieved before. It's just a matter of time, in addition, the SoundEngine class is used to play background music. The SoundEngine class can be read from [url = read. php? Tid-1215.html] http://www.cocoachina.com/bbs/read.php? Tid-1215.html [/url] download.

The code is easy to post, so you only need:
-(Void) viewDidLoad
{
Array = [[NSMutableArray alloc] init];
Int I = 1;
For (I; I <= 30; I ++)
{
[Array addObject: [UIImageimageNamed: [NSString stringWithFormat: @ "d.jpg", I];
}
Pictures. animationImages = array;
Pictures. animationDuration = 300; // Time Interval
Pictures. animationRepeatCount = 0; // loop playback
[Pictures startAnimating]; // start playing



// Play background music using the SoundEngine class
SoundEngine_SetListenerPosition (0.0, 0.0, 1.0 );
SoundEngine_Initialize (44100 );
SoundEngine_LoadBackgroundMusicTrack ([[NSBundlemainBundle] pathForResource: @ "win" ofType: @ "caf"] UTF8String], true, true );
SoundEngine_StartBackgroundMusic ();
}

Playing in this way seems to occupy resources. It is difficult to compare and study other methods later.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.