Dynamically setting layout on UICollectionView causes inexplicable contentOffset change

前端 未结 10 1555
一生所求
一生所求 2020-11-29 16:10

According to Apple\'s documentation (and touted at WWDC 2012), it is possible to set the layout on UICollectionView dynamically and even animate the changes:

相关标签:
10条回答
  • 2020-11-29 16:30

    This issue bit me as well and it seems to be a bug in the transition code. From what I can tell it tries to focus on the cell that was closest to the center of the pre-transition view layout. However, if there doesn't happen to be a cell at the center of the view pre-transition then it still tries to center where the cell would be post-transition. This is very clear if you set alwaysBounceVertical/Horizontal to YES, load the view with a single cell and then perform a layout transition.

    I was able to get around this by explicitly telling the collection to focus on a specific cell (the first cell visible cell, in this example) after triggering the layout update.

    [self.collectionView setCollectionViewLayout:[self generateNextLayout] animated:YES];
    
    // scroll to the first visible cell
    if ( 0 < self.collectionView.indexPathsForVisibleItems.count ) {
        NSIndexPath *firstVisibleIdx = [[self.collectionView indexPathsForVisibleItems] objectAtIndex:0];
        [self.collectionView scrollToItemAtIndexPath:firstVisibleIdx atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:YES];
    }
    
    0 讨论(0)
  • 2020-11-29 16:30

    Jumping in with a late answer to my own question.

    The TLLayoutTransitioning library provides a great solution to this problem by re-tasking iOS7s interactive transitioning APIs to do non-interactive, layout to layout transitions. It effectively provides an alternative to setCollectionViewLayout, solving the content offset issue and adding several features:

    1. Animation duration
    2. 30+ easing curves (courtesy of Warren Moore's AHEasing library)
    3. Multiple content offset modes

    Custom easing curves can be defined as AHEasingFunction functions. The final content offset can be specified in terms of one or more index paths with Minimal, Center, Top, Left, Bottom or Right placement options.

    To see what I mean, try running the Resize demo in the Examples workspace and playing around with the options.

    The usage is like this. First, configure your view controller to return an instance of TLTransitionLayout:

    - (UICollectionViewTransitionLayout *)collectionView:(UICollectionView *)collectionView transitionLayoutForOldLayout:(UICollectionViewLayout *)fromLayout newLayout:(UICollectionViewLayout *)toLayout
    {
        return [[TLTransitionLayout alloc] initWithCurrentLayout:fromLayout nextLayout:toLayout];
    }
    

    Then, instead of calling setCollectionViewLayout, call transitionToCollectionViewLayout:toLayout defined in the UICollectionView-TLLayoutTransitioning category:

    UICollectionViewLayout *toLayout = ...; // the layout to transition to
    CGFloat duration = 2.0;
    AHEasingFunction easing = QuarticEaseInOut;
    TLTransitionLayout *layout = (TLTransitionLayout *)[collectionView transitionToCollectionViewLayout:toLayout duration:duration easing:easing completion:nil];
    

    This call initiates an interactive transition and, internally, a CADisplayLink callback that drives the transition progress with the specified duration and easing function.

    The next step is to specify a final content offset. You can specify any arbitrary value, but the toContentOffsetForLayout method defined in UICollectionView-TLLayoutTransitioning provides an elegant way to calculate content offsets relative to one or more index paths. For example, in order to have a specific cell to end up as close to the center of the collection view as possible, make the following call immediately after transitionToCollectionViewLayout:

    NSIndexPath *indexPath = ...; // the index path of the cell to center
    TLTransitionLayoutIndexPathPlacement placement = TLTransitionLayoutIndexPathPlacementCenter;
    CGPoint toOffset = [collectionView toContentOffsetForLayout:layout indexPaths:@[indexPath] placement:placement];
    layout.toContentOffset = toOffset;
    
    0 讨论(0)
  • 2020-11-29 16:32

    Easy.

    Animate your new layout and collectionView's contentOffset in the same animation block.

    [UIView animateWithDuration:0.3 animations:^{
                                     [self.collectionView setCollectionViewLayout:self.someLayout animated:YES completion:nil];
                                     [self.collectionView setContentOffset:CGPointMake(0, -64)];
                                 } completion:nil];
    

    It will keep self.collectionView.contentOffset constant.

    0 讨论(0)
  • 2020-11-29 16:33

    2019 actual solution

    Say you have a number of layouts for your "Cars" view.

    Let's say you have three.

    CarsLayout1: UICollectionViewLayout { ...
    CarsLayout2: UICollectionViewLayout { ...
    CarsLayout3: UICollectionViewLayout { ...
    

    It will jump when you animate between layouts.

    It's just an undeniable mistake by Apple. It jumps when you animate, without question.

    The fix is this:

    You must have a global float, and, the following base class:

    var avoidAppleMessupCarsLayouts: CGPoint? = nil
    
    class FixerForCarsLayouts: UICollectionViewLayout {
        
        override func prepareForTransition(from oldLayout: UICollectionViewLayout) {
            avoidAppleMessupCarsLayouts = collectionView?.contentOffset
        }
        
        override func targetContentOffset(
            forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
            if avoidAppleMessupCarsLayouts != nil {
                return avoidAppleMessupCarsLayouts!
            }
            return super.targetContentOffset(forProposedContentOffset: proposedContentOffset)
        }
    }
    

    So here are the three layouts for your "Cars" screen:

    CarsLayout1: FixerForCarsLayouts { ...
    CarsLayout2: FixerForCarsLayouts { ...
    CarsLayout3: FixerForCarsLayouts { ...
    

    That's it. It now works.


    1. Incredibly obscurely, you could have different "sets" of layouts (for Cars, Dogs, Houses, etc.), which could (conceivably) collide. For this reason, have a global and a base class as above for each "set".

    2. This was invented by passing user @Isaacliu, above, many years ago.

    3. A detail, FWIW in Isaacliu's code fragment, finalizeLayoutTransition is added. In fact it's not necessary logically.

    The fact is, until Apple change how it works, every time you animate between collection view layouts, you do have to do this. That's life!

    0 讨论(0)
  • 2020-11-29 16:34

    I've probably spent about two weeks now trying to get various layout to transition between one another smoothly. I've found that override the proposed offset is working in iOS 10.2, but in version prior to that I still get the issue. The thing that makes my situation a bit worse is I need to transition into another layout as a result of a scroll, so the view is both scrolling and transitioning at the same time.

    Tommy's answer was the only thing that worked for me in pre 10.2 versions. I'm doing the following thing now.

    class HackedCollectionView: UICollectionView {
    
        var ignoreContentOffsetChanges = false
    
        override func setContentOffset(_ contentOffset: CGPoint, animated: Bool) {
            guard ignoreContentOffsetChanges == false else { return }
            super.setContentOffset(contentOffset, animated: animated)
        }
    
        override var contentOffset: CGPoint {
            get {
                return super.contentOffset
            }
            set {
                guard ignoreContentOffsetChanges == false else { return }
                super.contentOffset = newValue
            }
        }
    
        override func setCollectionViewLayout(_ layout: UICollectionViewLayout, animated: Bool) {
            guard ignoreContentOffsetChanges == false else { return }
            super.setCollectionViewLayout(layout, animated: animated)
        }
    
        override var contentSize: CGSize {
            get {
                return super.contentSize
            }
            set {
                guard ignoreContentOffsetChanges == false else { return }
                super.contentSize = newValue
            }
        }
    
    }
    

    Then when I set the layout I do this...

    let theContentOffsetIActuallyWant = CGPoint(x: 0, y: 100)
    UIView.animate(withDuration: animationDuration,
                   delay: 0, options: animationOptions,
                   animations: {
                    collectionView.setCollectionViewLayout(layout, animated: true, completion: { completed in
                        // I'm also doing something in my layout, but this may be redundant now
                        layout.overriddenContentOffset = nil
                    })
                    collectionView.ignoreContentOffsetChanges = true
    }, completion: { _ in
        collectionView.ignoreContentOffsetChanges = false
        collectionView.setContentOffset(theContentOffsetIActuallyWant, animated: false)
    })
    
    0 讨论(0)
  • 2020-11-29 16:35

    This finally worked for me (Swift 3)

    self.collectionView.collectionViewLayout = UICollectionViewFlowLayout()
    self.collectionView.setContentOffset(CGPoint(x: 0, y: -118), animated: true)
    
    0 讨论(0)
提交回复
热议问题