2

ページに5秒間表示されますが、スクロールビューがスクロールするたびに表示される画像を表示したいと思います。だから明らかに私はアニメーションと結婚する必要がUILabelありUIScrollViewます。正直に言うとどちらを使うべきかわからない。また、1つに2つあるUIScrollViewのでUIViewController、デリゲートとして何を設定すればよいかわかりません。

以下は私が現在持っているアニメーションです

 [UIView animateWithDuration:0.3 animations:^{  // animate the following:
    pageCountImage.frame = CGRectMake(0, 0, 100, 50); // move to new location
}];
4

3 に答える 3

4

ビューコントローラは、両方のスクロールビューの代理人になることができます。デリゲートパラメータを使用して、どのスクロールビューがスクロールしているかを判断できることを@Raviに同意します。

UIを理解するために、いくつかのアニメーションをパッケージ化する必要があるようです。

// hide or show the page count image after a given delay, invoke completion when done
- (void)setPageCountImageHidden:(BOOL)hidden delay:(NSTimeInterval)delay completion:(void (^)(BOOL))completion {

    BOOL currentlyHidden = self.pageCountImage.alpha == 0.0;
    if (hidden == currentlyHidden) return;

    [UIView animateWithDuration:0.3 delay:delay options:UIViewAnimationOptionBeginFromCurrentState animations:^{
        self.pageCountImage.alpha = (hidden)? 0.0 : 1.0;
    } completion:completion];
}

// move the page count image to the correct position given a scroll view content offset
- (void)positionPageControlForContentOffset:(CGFloat)xOffset {

    // assume page width is a constant (the width of a page in the scroll view)
    NSInteger page = xOffset / kPAGEWIDTH;

    // assume max page is a constant (the max number of pages in scroll view)
    // scroll positions in the "bounce" will generate page numbers out of bounds, fix that here...
    page = MAX(MIN(page, kMAXPAGE), 0);

    // kPAGE_INDICATOR_WIDTH the distance the page image moves between pages
    // kPAGE_INDICATOR_ORIGIN the page image x position at page zero
    CGFloat xPosition = kPAGE_INDICATOR_ORIGIN + page * kPAGE_INDICATOR_WIDTH;

    // assume y position and size are constants
    CGRect pageIndicatorFrame = CGRectMake(xPosition, kYPOS, kWIDTH, kHEIGHT);

    // finally, do the animation
    [UIView animateWithDuration:0.3 animations:^{
        self.pageCountImage.frame = pageIndicatorFrame;
    }];
}

次に、ビューでスクロールしました:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {

    if (scrollView == /* the scroller with the page control */) {

        [self setPageCountImageHidden:NO delay:0.0 completion:^(BOOL finished) {
            [self positionPageControlForContentOffset:scrollView.contentOffset.x];
            [self setPageCountImageHidden:YES delay:5.0 completion:^(BOOL finished){}];
        }];
    }
    // and so on...
于 2012-09-19T17:40:00.553 に答える
3

を実装する必要があります<UIScrollViewDelegate>。メソッドを利用して- (void)scrollViewDidScroll:(UIScrollView *)scrollView、そこにアニメーションコードを記述します。複数のスクロールビューがある場合は、次のようにすることができます。

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if(scrollView == myScrollView1)
        // do something
    else if (scrollView == myScrollView2)
        // do something else
    else
        // do something else
}
于 2012-09-19T17:10:17.970 に答える
0

テーブルビューと同じように、スクロールアクションを構成および制御する必要があります。ここで、コントローラーの拡張機能を記述し、すべてのスクロールアクションを制御できます。例として、以下を確認できます。

extension ExampleViewController: UIScrollViewDelegate {

    func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
        // your actions here
    }

    func scrollViewDidEndScrollingAnimation(_ scrollView: UIScrollView) {
        // your actions here
    }

    func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) {
        // your actions here
    }

    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        // your actions here
    }
}
于 2018-06-12T13:48:11.173 に答える