// // NewCollectionTableViewCell.h // tongxin // // Created by WeiChaoZheng on 2018/6/27. // Copyright © 2018年 xTT. All rights reserved. // #import "TableCell.h" typedef void (^SelectContactBlock)(NSString* contact, int code); @interface NewCollectionTableViewCell : baseCell @property (strong, nonatomic) IBOutlet UILabel *aTitleLabel; @property (strong, nonatomic) IBOutlet UICollectionView *collectionView; @property (strong, nonatomic) NSArray * collectionDataSource; @property (copy, nonatomic) SelectContactBlock selectContactBlock; @property (nonatomic ,copy) NSNumber *deviceType; /** 关系ID */ @property (assign, nonatomic) int contactcode ; @end