我自己实现让我的UITextView一直向上和向下滚动(显然,UIViewAnimationOptionRepeat | UIViewAnimationOptionAutoreverse选项不适用于iOS 7中的setContentOffSet)。
因此代码让我的UITextView(不可编辑和可选择)向上和向下滚动。无论如何,当它开始向下滚动时,UITextView的第一行就会消失。当它再次向上滚动时,会再次显示该行(直到开始向下滚动动画)。
我已经检查过没有其他视图隐藏第一行。
我真的被困在这里,因为这似乎是框架的一些错误,但我找不到合适的解决方法。
[UIView animateWithDuration:1.5f
delay:0.3f
options:UIViewAnimationOptionCurveLinear
animations:^{
[self.detailTextTop setContentOffset:CGPointMake(0, maxScrollPoint) animated:NO];
}
completion:^(BOOL finished) {
if (shouldScroll) {
__weak id weakSelf = self;
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[weakSelf performSelector:@selector(scrollNote) withObject:self afterDelay:1.5];
}];
}
}
];