1234567891011121314151617181920 |
- //
- // ShareMusicCellContentView.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/6/8.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ShareMusicCellContentView : UIView
- + (instancetype)shareInstance;
- - (void)configWithSongName:(NSString *)songName type:(NSString *)type authName:(NSString *)authName sendAvatar:(NSString *)sendAvatar sendName:(NSString *)sendName userId:(NSString *)userId tags:(NSString *)tags;
- @end
- NS_ASSUME_NONNULL_END
|