//
// HeaderCell.h
// XFFruit
//
// Created by n22 on 15/8/19.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ICRCheckBox.h"
@protocol HeaderCellDelegate <NSObject>
@optional
- (void)addClickList;
@end
@interface HeaderCell : UIView
@property (nonatomic,weak)id<HeaderCellDelegate>delegate;
@property (strong, nonatomic) ICRCheckBox *checkBox;
@property (nonatomic, copy) void (^blockCheckBox)(BOOL isSelect);
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)arr;
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)arr withHiddenEdit:(BOOL)isHiddenEdit;
- (instancetype)initWithFrame:(CGRect)frame WithCheckBoxArr:(NSArray *)arr checkBox:(void (^)(BOOL isSelect))check;
@end
-
Sandy authored2a743b25