[UIView animateWithDuration:0.25 animations:^{
self.underLine.center = CGPointMake(x, self.titleV.frame.size.height -1);
self.underLine.bounds = CGRectMake(0, 0, titleVW, 2);
}];
直接修改视图的x或y是不行的
直接修改视图的宽或高是不行的
[UIView animateWithDuration:0.25 animations:^{
self.underLine.center = CGPointMake(x, self.titleV.frame.size.height -1);
self.underLine.bounds = CGRectMake(0, 0, titleVW, 2);
}];
直接修改视图的x或y是不行的
直接修改视图的宽或高是不行的