在我的 xib 中,UIViewController
我使用UILabel
导航标题。但是文字太长了,所以我需要一个动画。像从左到右移动的东西UILabel
?
那可能吗?我看到了这段代码,但这是为了将一点移动到另一点。这里UILabel
的名字是“标签”
float newX = 90.0f;
float newY = 101.0f;
[UIView transitionWithView:label
duration:0.5f
options:UIViewAnimationCurveEaseInOut
animations:^(void) {
label.center = CGPointMake(newX, newY);
}
completion:^(BOOL finished) {
// Do nothing
}];