You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
677 B
33 lines
677 B
// |
|
// WHomeFunCell.h |
|
// tongxin |
|
// |
|
// Created by Apple on 2020/4/8. |
|
// Copyright © 2020 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#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
|
|
|