• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何实现像 Feedly 这样的动画,在 iOS Objective-c 中对新闻应用进行分类

[复制链接]
菜鸟教程小白 发表于 2022-12-11 18:10:32 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想实现一个类似 insorts 和 feedly 新闻应用的动画。 我找到了快速版本 是通过uicollectionview布局定制实现的。

这是链接

Depth Page transform on iOS 我将 swift 转换为 objective-c ,但没有达到相同的效果。

这是我的代码

导入“DepthLayout.h”

@interface DepthLayout() {
    CGFloat contentWidth;
    CGFloat contentHeight;
    CGFloat yOffset;
    CGFloat maxAlpha;
    CGFloat minAlpha;
    CGFloat widthOffset;
    CGFloat heightOffset;
    NSMutableArray * cache;
}
@end

@implementation DepthLayout
#pragma mark - Lifecycle

- (id)init
{
    self = [super init];
    if (self) {
        [self setup];
    }

    return self;
}

- (id)initWithCoderNSCoder *)aDecoder
{
    self = [super init];
    if (self) {
        [self setup];
    }

    return self;
}

- (void)setup
{

    yOffset=0;
    maxAlpha=1;
    minAlpha=0;
    widthOffset=35;
    heightOffset=35;
    cache=[[NSMutableArray alloc]init];

}
-(CGFloat)itemWidth{
    return CGRectGetWidth(self.collectionView.bounds);

}
-(CGFloat)itemHeight{
    return CGRectGetHeight(self.collectionView.bounds);

}
-(CGFloat)collectionViewHeight{
    return CGRectGetHeight(self.collectionView.bounds);

}
-(NSInteger)numberOfItems{
    return [self.collectionView numberOfItemsInSection:0];

}
-(CGFloat)dragOffset{
    return CGRectGetHeight(self.collectionView.bounds);

}
-(NSInteger)currentItemIndex{
    return MAX(0,(NSInteger)(self.collectionView.contentOffset.y/[self collectionViewHeight]));

}
-(CGFloat)nextItemBecomeCurrentPercentage{
    return (self.collectionView.contentOffset.y/[self collectionViewHeight])-(CGFloat)[self currentItemIndex];

}
#pragma mark - Layout

- (void)prepareLayout{
    [cache removeAllObjects];
    yOffset=0;
    for(NSInteger item=0;item<[self numberOfItems];item++){
       NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0];
        UICollectionViewLayoutAttributes *attribute =
        [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        if ((indexPath.item == [self currentItemIndex ]+1) && (indexPath.item < [self numberOfItems])){
            attribute.alpha = minAlpha + MAX((maxAlpha-minAlpha) * [self nextItemBecomeCurrentPercentage], 0);
            CGFloat width = [self itemWidth] - widthOffset + (widthOffset * [self nextItemBecomeCurrentPercentage]);
            CGFloat height = [self itemWidth] - heightOffset + (heightOffset * [self nextItemBecomeCurrentPercentage]);
            CGFloat deltaWidth =  width/[self itemWidth];
            CGFloat deltaHeight = height/[self itemHeight ];
            attribute.frame = CGRectMake(0, yOffset, [self itemWidth],[self itemHeight]);
            attribute.transform = CGAffineTransformMakeScale(deltaWidth, deltaHeight);
            CGPoint center=self.collectionView.center;
            center.y=self.collectionView.center.y+self.collectionView.contentOffset.y;
            center.x=self.collectionView.center.x+self.collectionView.contentOffset.x;
            attribute.center = center;
            yOffset += [self collectionViewHeight];

        }else{
            attribute.frame = CGRectMake(0, yOffset, [self itemWidth],[self itemHeight]);
            CGPoint center=self.collectionView.center;
            center.y=self.collectionView.center.y+yOffset;
            center.x=self.collectionView.center.x;
            yOffset += [self collectionViewHeight];
        }
        [cache addObject:attribute];
    }

}

-(CGSize)collectionViewContentSize{
    contentWidth = CGRectGetWidth(self.collectionView.bounds);
    contentHeight = (CGFloat)[self numberOfItems] * CGRectGetHeight(self.collectionView.bounds);
    return CGSizeMake(contentWidth, contentHeight);
}
-(NSMutableArray *)layoutAttributesForElementsInRectCGRect)rect{


    NSMutableArray* layoutAttributes = [[NSMutableArray alloc]init];
    for (UICollectionViewLayoutAttributes * attribute in cache){
        if(CGRectIntersectsRect(attribute.frame, rect)){
            [layoutAttributes addObject:attribute];
        }
    }
    return layoutAttributes;
}
-(BOOL)shouldInvalidateLayoutForBoundsChangeCGRect)newBounds{
    return YES;
}
-(CGPoint)targetContentOffsetForProposedContentOffsetCGPoint)proposedContentOffset withScrollingVelocityCGPoint)velocity{
    NSInteger itemIndex = round(proposedContentOffset.y / ([self dragOffset]));
    CGFloat yOffsetTemp = itemIndex * CGRectGetHeight(self.collectionView.bounds);
    return CGPointMake( 0,  yOffsetTemp);

}
-(UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPathNSIndexPath*)indexPath {

    UICollectionViewLayoutAttributes *attr=[UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
    return attr;
}
@end

What is the problem ?



Best Answer-推荐答案


无需将 swift 转换为 objective-c 。

我在我的 Objective C 项目中直接使用 Swift 文件 满足我的要求。

我从这里使用了 UltravisualLayout:Depth Page transform on iOS

感谢 swift 和 Objective C 之间的桥接;

关于ios - 如何实现像 Feedly 这样的动画,在 iOS Objective-c 中对新闻应用进行分类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40842600/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap