// // WHomeFunCell.h // tongxin // // Created by Apple on 2020/4/8. // Copyright © 2020 xTT. All rights reserved. // #import #import "User.h" #import "Device.h" #import "WatchFunctionCell.h" NS_ASSUME_NONNULL_BEGIN typedef void(^ChatCellSelectBack)(WatchFunctionCell* chatCell); @interface WHomeFunCell : UITableViewCell @property (weak, nonatomic) IBOutlet UICollectionView *funCollectionView; /** 微聊的cell */ @property (nonatomic ,weak) WatchFunctionCell * chatCell; @property (nonatomic ,copy) ChatCellSelectBack chatCellSelectBack; -(void)setFuncArrTitles:(NSArray*)funcArrTitles TitleImage:(NSArray*)array; @end NS_ASSUME_NONNULL_END