码迷,mamicode.com
首页 > 其他好文 > 详细

仿钢琴的声音

时间:2014-10-22 00:27:39      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

 

效果图:

bubuko.com,布布扣

当点击按钮的时候,会播放相应的钢琴的声音。

此代码需要引入库AudioToolbox.framework.

此为工程目录:

bubuko.com,布布扣

RootViewController.h

#import <UIKit/UIKit.h>
//加入头文件
#import <AudioToolbox/AudioToolbox.h>


@interface RootViewController : UIViewController
{
    NSString *soundFile;
}

@end

 

RootViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    NSArray *titleArray=[[NSArray alloc]initWithObjects:@"DO",@"RE",@"MI",@"FA",@"SO",@"LA",@"SI",@"C",@"D",@"E",@"F",@"G", nil];
    
    for (int i=0; i<12; i++) {
        UIButton *button=[[UIButton alloc]initWithFrame:CGRectMake(50, 80+30*i, 70, 20)];
        [button setTitle:[titleArray objectAtIndex:i] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(doClickAction:) forControlEvents:UIControlEventTouchUpInside];
        button.tag=i;
        button.backgroundColor=[UIColor redColor];
        [self.view addSubview:button];
    }
    
}
#pragma -mark -fucntions
-(void)playSound:(NSString*)soundKey{
    
    NSString *path = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] resourcePath],soundKey];
    SystemSoundID soundID;
    NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
    AudioServicesCreateSystemSoundID((__bridge CFURLRef)filePath, &soundID);
    AudioServicesPlaySystemSound(soundID);
    
}
#pragma -makr -doClickActions
-(void)doClickAction:(UIButton *)btn
{
    NSLog(@"---doClickActions--");
    NSLog(@"--btn.tag---%i",btn.tag);
    
    if (btn.tag==0) {
        soundFile = [NSString stringWithFormat:@"/001.mp3"];
        [self playSound: soundFile];

    }else if (btn.tag==1){
        soundFile = [NSString stringWithFormat:@"/002.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==2){
        soundFile = [NSString stringWithFormat:@"/003.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==3){
        soundFile = [NSString stringWithFormat:@"/004.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==4){
        soundFile = [NSString stringWithFormat:@"/005.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==5){
        soundFile = [NSString stringWithFormat:@"/006.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==6){
        soundFile = [NSString stringWithFormat:@"/007.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==7){
        soundFile = [NSString stringWithFormat:@"/C.mp3"];
        [self playSound: soundFile];
    }else if (btn.tag==8){
        soundFile = [NSString stringWithFormat:@"/D.mp3"];
        [self playSound: soundFile];

    }else if (btn.tag==9){
        soundFile = [NSString stringWithFormat:@"/E.mp3"];
        [self playSound: soundFile];

    }else if (btn.tag==10){
        soundFile = [NSString stringWithFormat:@"/F.mp3"];
        [self playSound: soundFile];

    }else if (btn.tag==11){
        soundFile = [NSString stringWithFormat:@"/G.mp3"];
        [self playSound: soundFile];

    }
}

 

仿钢琴的声音

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4041770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!