跑马灯效果

来源:互联网 发布:网络销售月收入是多少 编辑:程序博客网 时间:2024/06/08 10:31
  [UIView beginAnimations:@"testAnimation"context:NULL];
    [UIView setAnimationDuration:15.0f];
    [UIView setAnimationCurve:UIViewAnimationCurveLinear];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationRepeatAutoreverses:NO];
    [UIView setAnimationRepeatCount:999999];
    frame = labelShow.frame;
    frame.origin.x = -frame.size.width;
    labelShow.frame = frame;
    [UIView commitAnimations];
0 0
原创粉丝点击