1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
| #import <AVFoundation/AVFoundation.h>
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom]; [self.view addSubview:button]; button.backgroundColor = [UIColor yellowColor]; [button setFrame:CGRectMake(100, 100 + 64, 60, 40)]; [button setTitle:@"play" forState:UIControlStateNormal]; [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [button addTarget:self action:@selector(play) forControlEvents:UIControlEventTouchUpInside];
UIButton * button1 = [UIButton buttonWithType:UIButtonTypeCustom]; [self.view addSubview:button1]; button1.backgroundColor = [UIColor yellowColor]; [button1 setFrame:CGRectMake(100, 150 + 64, 60, 40)]; [button1 setTitle:@"pause" forState:UIControlStateNormal]; [button1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [button1 addTarget:self action:@selector(pause) forControlEvents:UIControlEventTouchUpInside];
UIButton * button2 = [UIButton buttonWithType:UIButtonTypeCustom]; [self.view addSubview:button1]; button2.backgroundColor = [UIColor yellowColor]; [button2 setFrame:CGRectMake(100, 200 + 64, 60, 40)]; [button2 setTitle:@"stop" forState:UIControlStateNormal]; [button2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [button2 addTarget:self action:@selector(stop) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:button2];
NSString * string = [[NSBundle mainBundle] pathForResource:@"凭什么说-刘心" ofType:@"mp3"]; NSURL * url = [NSURL fileURLWithPath:string]; self.avAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil]; [self.avAudioPlayer setDelegate:self]; [self.avAudioPlayer setVolume:1]; [self.avAudioPlayer setNumberOfLoops:-1]; [self.avAudioPlayer prepareToPlay]; self.progressV = [[UIProgressView alloc] initWithFrame:CGRectMake(80, 100, 200, 20)]; [self.progressV setProgressTintColor:[UIColor redColor]]; [self.progressV setTrackTintColor:[UIColor blueColor]]; [self.view addSubview:self.progressV]; [self.progressV release]; self.timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(playProgress) userInfo:nil repeats:YES]; self.volumeSlider = [[UISlider alloc] initWithFrame:CGRectMake(80, 130, 200, 20)]; [self.volumeSlider addTarget:self action:@selector(volumeChange) forControlEvents:UIControlEventValueChanged]; [self.volumeSlider setMinimumValue:0.0f]; [self.volumeSlider setMaximumValue:10.0f]; [self.volumeSlider setValue:5.0f]; [self.view addSubview:self.volumeSlider]; [self.volumeSlider release]; UISwitch *swith = [[UISwitch alloc] initWithFrame:CGRectMake(100, 500, 60, 40)]; [self.view addSubview:swith]; [swith addTarget:self action:@selector(onOrOff:) forControlEvents:UIControlEventValueChanged]; swith.on = YES; [swith release];
- (void)play { [self.avAudioPlayer play]; }
- (void)pause { [self.avAudioPlayer pause]; }
- (void)stop { self.avAudioPlayer.currentTime = 0; [self.avAudioPlayer stop]; }
- (void)playProgress { self.progressV.progress = self.avAudioPlayer.currentTime/self.avAudioPlayer.duration; }
- (void)onOrOff:(UISwitch *)sender { self.avAudioPlayer.volume = sender.on; }
- (void)volumeChange { self.avAudioPlayer.volume = self.volumeSlider.value; }
- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag { [self.timer invalidate]; }
|