单军华
2018-04-18 de88ae127e305e0b153c327b073645f9353cace5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  PlaySystemSound.h
//  pregnancy_guard
//
//  Created by WindShan on 2018/4/17.
//  Copyright © 2018年 WindShan. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <AudioToolbox/AudioToolbox.h>
 
@interface PlaySystemSound : NSObject
{
    SystemSoundID sound;//系统声音的id 取值范围为:1000-2000
}
 
- (id)initSystemShake;//系统 震动
- (id)initSystemSoundWithName:(NSString *)soundName SoundType:(NSString *)soundType;//初始化系统声音
- (void)play;//播放
 
@end