欢迎光临
我们一直在努力

数字跳动动画

建站超值云服务器,限时71元/月

数字跳动动画

项目介绍:

  1. – (void)viewDidLoad {
  2.    
  3.     [super viewDidLoad];
  4.     DigitalBeatAnimation *view = [[DigitalBeatAnimation alloc]initWithFrame:CGRectMake(30, 200, self.view.frame.size.width-60, 60)];
  5.     view.backgroundColor = UIColor.yellowColor;
  6.     self.animationView = view;
  7.     [self.view addSubview:view];
  8.    
  9.     UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
  10.     [button setFrame:CGRectMake((self.view.frame.size.width-200)/2.0, 300, 200, 30)];
  11.     [button setTitle:@"点我" forState:UIControlStateNormal];
  12.     [button setTitleColor:UIColor.blueColor forState:UIControlStateNormal];
  13.     [button setBackgroundColor:UIColor.grayColor];
  14.     [button addTarget:self action:@selector(buttonTouch) forControlEvents:UIControlEventTouchUpInside];
  15.     [self.view addSubview:button];
  16. }
  17. – (void)buttonTouch {
  18.    
  19.     self.number += arc4random()%10000;
  20.     self.animationView.digital = [NSNumber numberWithInteger:self.number];
  21.     [self.animationView createAnimations];
  22. }

复制代码

链接:https://github.com/dusmit/DigitalBeatAnimation,如果对您有所帮助请点下赞,谢谢!

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 数字跳动动画
分享到: 更多 (0)