美文网首页
学习使用

学习使用

作者: Steven054 | 来源:发表于2017-03-17 15:45 被阅读3次
    • vertical [ˈvə:tikəl] 垂直
    • horizontal scroll 英 [ˌhɔriˈzɔntəl] 水平滚动
    • invalidate 英 [ɪnˈvælɪˌdeɪt] 无效

    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];
    

    相关文章

      网友评论

          本文标题:学习使用

          本文链接:https://www.haomeiwen.com/subject/dsingttx.html