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

#import <UIKit/UIKit.h>

@protocol FooterCellDelegate <NSObject>

- (void)addClick;
陈俊俊's avatar
陈俊俊 committed
14
- (void)choosePurchase;
n22's avatar
n22 committed
15 16 17
@end

@interface FooterCell : UIView
陈俊俊's avatar
陈俊俊 committed
18
- (instancetype)initWithFrame:(CGRect)frame withTitle:(NSString *)title isTwo:(NSString *)twoTitle;
陈俊俊's avatar
陈俊俊 committed
19
@property (nonatomic,weak)id<FooterCellDelegate>delegate;
n22's avatar
n22 committed
20 21

@end