Files
yinmeng-ios/xplan-ios/Main/Home/View/Mew/MewHomeView/MewHomeCell/MewMainHomeMakeFriendCell.h
2023-12-26 14:29:53 +08:00

30 lines
1.0 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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