ICRFunctionBaseView.h 595 Bytes
Newer Older
mei's avatar
mei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
//
//  ICRFunctionBaseView.h
//  XFFruit
//
//  Created by Lili Wang on 15/4/1.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ICRFunctionItemControl.h"

@protocol ICRFunctionBaseViewDelegate;

@interface ICRFunctionBaseView : UIView//<ICRFuctionItemControlDelegate>

@property (weak, nonatomic) id <ICRFunctionBaseViewDelegate> m_delegate;

+ (ICRFunctionBaseView *)initWithFunctionData:(NSArray *)arrFunctions;

@end

@protocol ICRFunctionBaseViewDelegate <NSObject>

@optional
- (void)ICRFunctionBaseView:(ICRFunctionItemControl *)imageView;

@end