美文网首页
IOS15之音效播放

IOS15之音效播放

作者: Johnson_9d92 | 来源:发表于2022-01-19 17:08 被阅读0次

    IOS15之音效播放

    #import <AVFoundation/AVFoundation.h>
    @interface ViewController ()
    @property(nonatomic,assign)SystemSoundID soundID;
    @end
    @implementation ViewController
    - (void)viewDidLoad {
        [super viewDidLoad];
        NSURL *url = [[NSBundle mainBundle] URLForResource:@"diSound.wav" withExtension:nil];
        AudioServicesCreateSystemSoundID((__bridge CFURLRef)url, &_soundID);
    }
    - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
        AudioServicesPlayAlertSound(_soundID);
    }
    @end
    

    相关文章

      网友评论

          本文标题:IOS15之音效播放

          本文链接:https://www.haomeiwen.com/subject/fwgrhrtx.html