30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
![]() |
//
|
|||
|
// MewMainHomeMakeFriendCell.h
|
|||
|
// xplan-ios
|
|||
|
//
|
|||
|
// Created by duoban on 2023/12/22.
|
|||
|
//
|
|||
|
|
|||
|
#import <UIKit/UIKit.h>
|
|||
|
#import "MewMainHomeMakeFriendModel.h"
|
|||
|
@class MewMainHomeMakeFriendModel,MewMainHomeMakeFriendCell;
|
|||
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
@protocol MewMainHomeMakeFriendCellDelegate <NSObject>
|
|||
|
///点击播放声音
|
|||
|
-(void)mew_clickPlayVoiceActionWithCell:(MewMainHomeMakeFriendCell *)cell model:(MewMainHomeMakeFriendModel *)model isPlay:(BOOL)isPlay;
|
|||
|
///点击房间
|
|||
|
-(void)mew_clickRoomBtnActionWithModel:(MewMainHomeMakeFriendModel *)model;
|
|||
|
///点击头像
|
|||
|
-(void)mew_clickAvatarBtnActionWithModel:(MewMainHomeMakeFriendModel *)model;
|
|||
|
@end
|
|||
|
@interface MewMainHomeMakeFriendCell : UICollectionViewCell
|
|||
|
@property(nonatomic,strong) MewMainHomeMakeFriendModel *friendModel;
|
|||
|
@property(nonatomic,weak) id<MewMainHomeMakeFriendCellDelegate>delegate;
|
|||
|
///声音卡倒计时
|
|||
|
-(void)mew_setPlayVoiceTime:(NSInteger)time;
|
|||
|
///声音卡时,svga是否播放动画
|
|||
|
-(void)mew_setPlayVoiceStatus:(BOOL)isPlay;
|
|||
|
@end
|
|||
|
|
|||
|
NS_ASSUME_NONNULL_END
|