31 lines
727 B
Objective-C
31 lines
727 B
Objective-C
//
|
|
// XPNewHomePartyAudioView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/9/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPNewHomePartyAudioView;
|
|
@protocol XPNewHomePartyAudioViewDelegate <NSObject>
|
|
|
|
-(void)xPNewHomePartyAudioView:(XPNewHomePartyAudioView *)view didClickPlaySound:(BOOL)isPlay;
|
|
|
|
@end
|
|
@interface XPNewHomePartyAudioView : UIView
|
|
|
|
///签名
|
|
@property(nonatomic,copy) NSString *userDesc;
|
|
///语音
|
|
@property(nonatomic,copy) NSString *userVoice;
|
|
///语音时长
|
|
@property(nonatomic,copy) NSString *voiceDura;
|
|
@property(nonatomic,assign) BOOL isPlay;
|
|
@property(nonatomic,assign) BOOL isHiddenVew;
|
|
@property(nonatomic,weak) id<XPNewHomePartyAudioViewDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|