HeaderCell.h 496 Bytes
Newer Older
n22's avatar
n22 committed
1 2 3 4 5 6 7 8 9 10
//
//  HeaderCell.h
//  XFFruit
//
//  Created by n22 on 15/8/19.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

陈俊俊's avatar
陈俊俊 committed
11 12 13 14 15 16 17
@protocol HeaderCellDelegate <NSObject>

@optional
- (void)addClickList;

@end

n22's avatar
n22 committed
18
@interface HeaderCell : UIView
陈俊俊's avatar
陈俊俊 committed
19
@property (nonatomic,weak)id<HeaderCellDelegate>delegate;
n22's avatar
n22 committed
20
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)arr;
陈俊俊's avatar
陈俊俊 committed
21
- (instancetype)initWithFrame:(CGRect)frame withArr:(NSArray *)arr withHiddenEdit:(BOOL)isHiddenEdit;
n22's avatar
n22 committed
22 23 24


@end