FollowHeartViewController.h 1.22 KB
//
//  FollowHeartViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/4.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"
#import "LeftSubView.h"
#import "RightSubView.h"
#import "FootSubView.h"
#import "SeceneLibraryView.h"   
#import "ProductLibraryView.h"
@protocol FollowHeartViewAddpicturedelegate <NSObject>

@required

//回调
- (void)buttonClick:(NSInteger)btnTag withButton:(UIButton *)button;

@end

@interface FollowHeartViewController : BaseViewController<LeftViewBtnClickdelegate,RightViewBtnClickdelegate,FootViewBtnClickdelegate,UIGestureRecognizerDelegate,AddSecenePicturedelegate,AddProductPicturedelegate>
@property (nonatomic,assign) id<FollowHeartViewAddpicturedelegate> delegate;
@property (nonatomic,strong) LeftSubView *leftSubView;
@property (nonatomic,strong) RightSubView *rightSubView;
@property (nonatomic,strong) FootSubView *footSubView;
@property (nonatomic,strong) SeceneLibraryView *seceneLibraryView;
@property (nonatomic,strong) ProductLibraryView *productLibraryView;
@property (nonatomic,strong)UIImageView* backGroundImageView;
@property (nonatomic,strong)UIButton* zoomButton;
@property (nonatomic,strong)UIButton* temporaryBtn;

@end