IOS15之音效播放

2022-01-19  本文已影响0人  Johnson_9d92

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
上一篇下一篇

猜你喜欢

热点阅读