// // ExperienceCentreViewController.h // Lighting // // Created by 曹云霄 on 16/6/1. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" @interface ExperienceCentreViewController : BaseViewController /** * 场景图片 */ @property (weak, nonatomic) IBOutlet UIImageView *sceneImageView; /** * 返回按钮 */ @property (weak, nonatomic) IBOutlet UIButton *returnButton; /** * 购物袋按钮 */ @property (weak, nonatomic) IBOutlet UIButton *shoppingbagButton; /** * 分享按钮 */ @property (weak, nonatomic) IBOutlet UIButton *shareButton; /** * 拍照按钮 */ @property (weak, nonatomic) IBOutlet UIButton *takingPicturesButton; /** * 放大按钮 */ @property (weak, nonatomic) IBOutlet UIButton *amplificationButton; /** * 帮助按钮 */ @property (weak, nonatomic) IBOutlet UIButton *helpButton; /***********************************功能区*************************************/ /** * 场景筛选 */ @property (weak, nonatomic) IBOutlet UIButton *sceneSelectedButton; /** * 场景展示 */ @property (weak, nonatomic) IBOutlet UIScrollView *sceneScrollview; /** * 产品筛选 */ @property (weak, nonatomic) IBOutlet UIButton *productSelectedButton; /** * 产品展示 */ @property (weak, nonatomic) IBOutlet UIScrollView *productScrollview; @end