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.
 
 
 
 

28 lines
729 B

//
// 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 <UICollectionViewDelegate,UICollectionViewDataSource>
@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