diff --git a/Lighting/Class/Experiencecentre/Controller/ExperienceCentreViewController.m b/Lighting/Class/Experiencecentre/Controller/ExperienceCentreViewController.m
index 17e0bfc3e8e39bf9998d127e71700d3ad535a5c4..07bf2e81cdf617c61fb2fe1e1a05922f33c934ee 100755
--- a/Lighting/Class/Experiencecentre/Controller/ExperienceCentreViewController.m
+++ b/Lighting/Class/Experiencecentre/Controller/ExperienceCentreViewController.m
@@ -473,7 +473,7 @@
 
 
 #pragma mark -AddImagesDelegate选中图片
-- (void)SelectedImageswithModel:(JSONModel *)model withisScene:(BOOL)isScene returnResponse:(void (^)(BOOL))isThere
+- (void)selectedImageswithModel:(JSONModel *)model withisScene:(BOOL)isScene returnResponse:(void (^)(BOOL))isThere
 {
     if (isScene) {
         //场景
@@ -509,7 +509,7 @@
 }
 
 #pragma mark -刷新
-- (void)RefreshSceneAndProduct:(BOOL)isScene
+- (void)refreshSceneAndProduct:(BOOL)isScene
 {
     if (isScene) {
         
diff --git a/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.h b/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.h
index 7579173d973a43d70e1215485ea763f37e238f03..28de2538f4d37e0235ba2ac7cc2f79aaf054675f 100755
--- a/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.h
+++ b/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.h
@@ -16,9 +16,9 @@
 @required
 
 //增加图片
-- (void)SelectedImageswithModel:(JSONModel *)model withisScene:(BOOL)isScene returnResponse:(void(^)(BOOL boolValue))isThere;
+- (void)selectedImageswithModel:(JSONModel *)model withisScene:(BOOL)isScene returnResponse:(void(^)(BOOL boolValue))isThere;
 //刷新
-- (void)RefreshSceneAndProduct:(BOOL)isScene;
+- (void)refreshSceneAndProduct:(BOOL)isScene;
 //删除图片
 @end
 
diff --git a/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.m b/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.m
index 0bb389afd359b5e828db0059fbe8f9d1013476c6..75e86b5d76928c413772a69ff7f525a55d1a6acf 100644
--- a/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.m
+++ b/Lighting/Class/Experiencecentre/Scene/Controller/SceneViewController.m
@@ -745,9 +745,9 @@
     if (self.isScene) {
         ScreeningCollectionViewCell *cell = (ScreeningCollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
         CGPoint startPoint = [cell convertPoint:cell.sceneImageView.center toView:self.sceneOrProductClollectionView.window];
-        if ([self.delegate respondsToSelector:@selector(SelectedImageswithModel:withisScene:returnResponse:)]) {
+        if ([self.delegate respondsToSelector:@selector(selectedImageswithModel:withisScene:returnResponse:)]) {
             SceneListModel *model = [self.sceneDatasArray objectAtIndex_opple:indexPath.item];
-            [self.delegate SelectedImageswithModel:model withisScene:self.isScene returnResponse:^(BOOL boolValue) {
+            [self.delegate selectedImageswithModel:model withisScene:self.isScene returnResponse:^(BOOL boolValue) {
                 //判断选中的图片是否存在
                 if (!boolValue) {
                    [weakSelf StartAddShoppingCarAnimationWithimage:[cell.sceneImageView image] withStartpoint:startPoint withSize:cell.mj_size];
@@ -764,9 +764,9 @@
     {
         ProductScreeningCollectionViewCell *cell = (ProductScreeningCollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
         CGPoint startPoint = [cell convertPoint:cell.goodsImageView.center toView:self.sceneOrProductClollectionView.window];
-                if ([self.delegate respondsToSelector:@selector(SelectedImageswithModel:withisScene:returnResponse:)]) {
+                if ([self.delegate respondsToSelector:@selector(selectedImageswithModel:withisScene:returnResponse:)]) {
             GoodsCategoryModel *model = [self.productDatasArray objectAtIndex_opple:indexPath.item];
-            [self.delegate SelectedImageswithModel:model withisScene:self.isScene returnResponse:^(BOOL boolValue) {
+            [self.delegate selectedImageswithModel:model withisScene:self.isScene returnResponse:^(BOOL boolValue) {
                 //判断图片是否存在
                 if (!boolValue) {
                     [weakSelf StartAddShoppingCarAnimationWithimage:[cell.goodsImageView image] withStartpoint:startPoint withSize:cell.mj_size];
@@ -841,9 +841,9 @@
 #pragma mark -动画完成
 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
 {
-    if ([self.delegate respondsToSelector:@selector(RefreshSceneAndProduct:)]) {
+    if ([self.delegate respondsToSelector:@selector(refreshSceneAndProduct:)]) {
         
-        [self.delegate RefreshSceneAndProduct:self.isScene];
+        [self.delegate refreshSceneAndProduct:self.isScene];
     }
 }