//
// 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
-
mei authoredd4286c2c