Commit 1cde653267655d5003b0c961f55fac9d8c9ce054

Authored by zhangxiaowen
1 parent 753b61df

no message

CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m
@@ -86,15 +86,15 @@ static const NSInteger margin = 0; @@ -86,15 +86,15 @@ static const NSInteger margin = 0;
86 - (void)addAnimation{ 86 - (void)addAnimation{
87 _bgView.transform = CGAffineTransformMake(0.01, 0, 0, 0.01, _bgView.left, _bgView.top); 87 _bgView.transform = CGAffineTransformMake(0.01, 0, 0, 0.01, _bgView.left, _bgView.top);
88 [UIView animateWithDuration:0.3f animations:^{ 88 [UIView animateWithDuration:0.3f animations:^{
89 - _bgView.transform = CGAffineTransformMake(1.05f, 0, 0, 1.0f, 0, 0); 89 + self->_bgView.transform = CGAffineTransformMake(1.05f, 0, 0, 1.0f, 0, 0);
90 90
91 } completion:^(BOOL finished) { 91 } completion:^(BOOL finished) {
92 [UIView animateWithDuration:0.1f animations:^{ 92 [UIView animateWithDuration:0.1f animations:^{
93 - _bgView.transform = CGAffineTransformMake(1, 0, 0, 1, 0, 0); 93 + self->_bgView.transform = CGAffineTransformMake(1, 0, 0, 1, 0, 0);
94 94
95 } completion:^(BOOL finished) { 95 } completion:^(BOOL finished) {
96 // 恢复原位 96 // 恢复原位
97 - _bgView.transform = CGAffineTransformIdentity; 97 + self->_bgView.transform = CGAffineTransformIdentity;
98 98
99 }]; 99 }];
100 100