Commit 1cde653267655d5003b0c961f55fac9d8c9ce054
1 parent
753b61df
no message
Showing
1 changed file
with
3 additions
and
3 deletions
CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m
| ... | ... | @@ -86,15 +86,15 @@ static const NSInteger margin = 0; |
| 86 | 86 | - (void)addAnimation{ |
| 87 | 87 | _bgView.transform = CGAffineTransformMake(0.01, 0, 0, 0.01, _bgView.left, _bgView.top); |
| 88 | 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 | 91 | } completion:^(BOOL finished) { |
| 92 | 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 | 95 | } completion:^(BOOL finished) { |
| 96 | 96 | // 恢复原位 |
| 97 | - _bgView.transform = CGAffineTransformIdentity; | |
| 97 | + self->_bgView.transform = CGAffineTransformIdentity; | |
| 98 | 98 | |
| 99 | 99 | }]; |
| 100 | 100 | ... | ... |