123456789101112131415161718192021222324252627282930313233 |
- //
- // JXStartSoundView.h
- // shiku_im
- //
- // Created by 123 on 2020/6/12.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <AudioToolbox/AudioToolbox.h>
- #import <AVFoundation/AVFoundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXStartSoundView : UIView
- @property (nonatomic,strong) AVAudioPlayer *player;
- @property (nonatomic,copy) NSString *strURL;
- -(void)createSoundStrUrl2:(NSString *)strURl messageText:(UITextView *)messageText valueInt:(int )value;
- -(void)createSoundStrUrl2:(NSString *)strURl valueInt:(int )value;
- //内方法
- +(void)createSoundStrUrl:(NSString *)strURl valueInt:(int )value;
-
- +(void)createSoundStrUrl:(NSString *)strURl messageText:(UITextView *)messageText valueInt:(int )value;
- @end
- NS_ASSUME_NONNULL_END
|