123456789101112131415161718192021222324252627282930 |
- //
- // FUMusicPlayer.h
- // FULive
- //
- // Created by 刘洋 on 2017/10/13.
- // Copyright © 2017年 liuyang. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FUMusicPlayer : NSObject
- @property (nonatomic, assign) BOOL enable;
- + (FUMusicPlayer *)sharePlayer;
- - (void)playMusic:(NSString *)music;
- - (void)rePlay;
- - (void)stop;
- - (void)resume;
- - (void)pause;
- - (float)playProgress;
- - (NSTimeInterval)currentTime;
- @end
|