美文网首页
UIView 的animateWithDuration下标移动动

UIView 的animateWithDuration下标移动动

作者: 一只不会飞的小艳子 | 来源:发表于2017-07-24 14:05 被阅读0次

    通常我们会遇到各种各样的页面切换需求,这时需要一个类似下方的下标随着页面的切换而换位置,我之前的做法都是分别计算出该下面的frame。然后移动。今天发现了一个更好的不用计算坐标的写法,在这里记录下

    [UIView animateWithDuration:0.2 animations:^{

    CGPoint center =_line.center;

    center.x= tap.view.center.x;

    _line.center= center;

    }];

    //tap 为传过来的手势。btn一样使用

    相关文章

      网友评论

          本文标题:UIView 的animateWithDuration下标移动动

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