achtergrondmuziek discussie in Ontwikkelen voor iOS forum; ( verdwijnt na registratie ) Edit: Opgelost, met de volgende code : Code: AVAudioPlayer *myExampleSound; //this variable can be named differently NSString *myExamplePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"m4a"]; // *Music ...
|
Registreer | FAQ | Ledenlijst | Kalender | Berichten van vandaag | Zoeken |
#1
|
|||
|
|||
achtergrondmuziek
Edit: Opgelost, met de volgende code :
Code:
AVAudioPlayer *myExampleSound; //this variable can be named differently NSString *myExamplePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"m4a"]; // *Music filename* is the name of the file that you want to play. BE SURE that you type the correct characters as the system is case-sensitive. It caused a crash for me... Very painful. myExampleSound =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:myExamplePath] error:nil]; myExampleSound.delegate = self; [myExampleSound prepareToPlay]; [myExampleSound play]; //[myExampleSound stop]; myExampleSound.numberOfLoops = 10; /* can be as many times as needed by the application - myExampleSound.numberOfLoops = -1; >> this will allow the file to play an infinite number of times */ Lock plz. Greetz Laatst gewijzigd door Tim14ww; 12-05-09 om 19:27. Reden: Opgelost |
|
|
Gesponsorde links (verdwijnt na registratie)
|
Er zijn 1 actieve gebruikers die momenteel deze discussie bekijken (0 leden en 1 gasten) |
|
Soortgelijke discussies |
||||
Discussie | Auteur | Forum | Reacties | Laatste bericht |
app waarmee je kan opnemen en tegelijkertijd ook instrumentale) achtergrondmuziek kan | bilal2307 | iPhone Apps | 0 | 17-08-09 18:42 |
|
|