UIView动画
__weak typeof(self) weakSelf = self;
[self sizeToFit];
[UIView beginAnimations:@"HorizontalScrollLabel" context:NULL];
[UIView setAnimationDuration:15.0f];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationRepeatCount:MAXFLOAT];
CGRect frame = weakSelf.frame;
frame.origin.x = -frame.size.width;
weakSelf.frame = frame;
[UIView commitAnimations];
网友评论