ios – 为什么UILabel的边界上的动画只能在增加大小时起作用?

前端之家收集整理的这篇文章主要介绍了ios – 为什么UILabel的边界上的动画只能在增加大小时起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到,当我改变一个UILabel在动画块中的界限,它只有当我增加大小时才起作用,当我减小UILabel的大小只是改变了他的大小,但没有动画.
用简单的UIView替换UILabel按照预期的方式工作.

注意:将UILabel的contentMode属性更改为UIViewContentModeScaleToFill会修复此问题,但是我仍然不明白为什么在不更改contentMode属性的情况下增加大小的原因.

  1. #import "FooView.h"
  2.  
  3. @interface FooView ()
  4. @property (strong,nonatomic) UILabel *label;
  5. @property (assign,nonatomic) BOOL resized;
  6. @end
  7.  
  8. @implementation FooView
  9.  
  10. - (id)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. self.backgroundColor = [UIColor lightGrayColor];
  15.  
  16. self.label = [[UILabel alloc] initWithFrame:(CGRect){0,frame.size}];
  17. self.label.backgroundColor = [UIColor greenColor];
  18. [self addSubview:self.label];
  19. _resized = false;
  20.  
  21. UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(changeSize)];
  22. tapRecognizer.numberOfTapsrequired = 1;
  23. [self addGestureRecognizer:tapRecognizer];
  24. }
  25. return self;
  26. }
  27.  
  28. - (void)changeSize {
  29. [UIView animateWithDuration:0.8
  30. delay:0.0
  31. options:UIViewAnimationOptionCurveEaseIn
  32. animations:^{
  33. CGRect bounds = self.label.bounds;
  34. if (self.resized) {
  35. bounds.size.height *= 2;
  36. bounds.size.width *= 2;
  37. } else {
  38. bounds.size.width /= 2;
  39. bounds.size.height /= 2;
  40. }
  41. self.label.bounds = bounds;
  42. }
  43. completion:^(BOOL finished) {
  44. self.resized = !self.resized;
  45. }];
  46. }
  47.  
  48. @end

解决方法

这是因为UILabel将其层的contentGravity设置为正在呈现的文本方向,这恰好默认为UIViewContentModeLeft(或@“left”).因此,当这个层被告知要动画时,它首先看一眼它的内容重力,然后基于随后的动画.因为它看到@“left”,应该有@“resize”,它假定缩放动画应该从左边开始,但它也必须尊重你给它的约束(边界改变),所以你的标签似乎跳入其最终尺寸,然后将其定位在屏幕中央.

如果要离开contentMode,请使用CATransform3D并缩放标签层,而不是边界更改.

猜你在找的iOS相关文章