我有一个UILabel
可以滑入和滑出的视图,但是在滑回后它消失了。我希望它坚持下去。
我怎样才能做到这一点?另外,为什么会这样?
这是代码:
[UIView animateWithDuration:0.1
delay:0.0
options:UIViewAnimationOptionAutoreverse
animations:^{
[self.listLabel setFrame:CGRectMake(325, 141, 320, 181)];
}
completion:nil];
谢谢。