2
0
桂欢 1 gadu atpakaļ
vecāks
revīzija
1b83f91789

+ 8 - 0
SLAiELTS/SLAiELTS/ViewControllers/Moments/MomentsVc/SLFriensInfoVc.m

@@ -44,6 +44,10 @@
     
     WS(weakSelf);
     [self.fpyqBgView addTapWithBlock:^{
+        weakSelf.fpyqBgView.backgroundColor = [UIColor colorWithRed:205 / 255.0 green:205 / 255.0 blue:205 / 255.0 alpha:1.0];
+        [UIView animateWithDuration:0.3 animations:^{
+            weakSelf.fpyqBgView.backgroundColor = [UIColor whiteColor];
+        }];
         SLMomentsVc *vc = [SLMomentsVc loadViewControllewWithNib];
         SLUserModel *userModel = [[SLUserModel alloc] init];
         userModel.userId = weakSelf.friendModel.userId;
@@ -81,6 +85,10 @@
     self.pyqxView.rightImageViw.image = ImageName(@"icon_chevron_right");
     WS(weakSelf);
     [self.pyqxView addTapWithBlock:^{
+        weakSelf.pyqxView.contentView.backgroundColor = [UIColor colorWithRed:205 / 255.0 green:205 / 255.0 blue:205 / 255.0 alpha:1.0];
+        [UIView animateWithDuration:0.3 animations:^{
+            weakSelf.pyqxView.contentView.backgroundColor = [UIColor whiteColor];
+        }];
         SLFriendPowerVc *vc = [SLFriendPowerVc loadViewControllewWithNib];
         vc.friendModel = weakSelf.friendModel;
         [weakSelf navPushViewController:vc animated:YES];