Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
1. I am looking for the sample code form apple ( or anywhere else ) on how to use AVAudioPlayer. Please give me the URL if you know any good resource. My sounds are just around 10 secs, but there are many different files which needs to run.. Can I use the simple AudioServicesPlaySystemSound? or should use AvAudioPlayer. Apple says one can use files upto 30 seconds but for alert purpose.. but my use is not alert sounds.. human speech sounds.
2. Can I use UIImage like a button, as I need a round image needs to initiate some action. Is there is potential issue with this approach?
Replies
#import
#import
NSString *soundPath = [[NSBundle mainBundle] pathForResource:fileNameToPlay ofType:@"mp3"];
self.player =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:soundPath] error:NULL];
player.delegate = self;
[player play];
Also, have to include the avfoundation framework.
But sometimes, audio file runs in a loop ( rarely.. ) even though I am running it only once. Don't know why.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeUse that for no looping
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeDownloads
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesome- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesomeplayer.numberOfLoops = 0;
is not helpful. I have seen this happening in simulator but yet to come across this in iphone. I have to test more.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesome