在动画`UIScrollView`时有没有办法获取`UIButton`的标签?

时间:2015-02-25 03:14:27

标签: ios objective-c iphone animation uiscrollview

我的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的标记? 先感谢您。

0 个答案:

没有答案