在从右到左的长动画移动字符串中,我想获得实际可见的子字符串。是否有可能在动画过程中获得它?
我必须保留横幅的两个特征:
- 平稳移动
- 在屏幕上的某个点获取子字符串(几个字符)
它是一根长串。
我使用这个动画:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:10.0];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
...
[UIView commitAnimations];
我试过:
CGPoint currentPosition = [[self.autoScrollText.layer presentationLayer] position];
但没有成功...