我的UIScrollView
有50 UIButtons
。我试图通过更改UIScrollview
的偏移来设置动画。
NSTimeInterval animationDuration = scrollView.contentSize.width/80;
[UIView animateKeyframesWithDuration:animationDuration delay:0.0 options:UIViewAnimationOptionCurveEaseIn |UIViewAnimationOptionAllowUserInteraction animations:^{
scrollView.contentOffset = CGPointMake(scrollView.contentSize.width - scrollView.frame.size.width, 0);
} completion:^(BOOL finished) {
}];
但是当我点击UIButton
中的任何一个时,我会得到最后两个标签,即48& 49.
如果我没有动画UIScrollView
的内容偏移量,那么它可以正常工作完善。
在动画UIButton
时有没有办法获取UIScrollView
的标记?
先感谢您。