Files
fanyin-ios/QXLive/Third/ZLCollectionViewFlowLayout/ZLCellFakeView.h

26 lines
734 B
C
Raw Normal View History

2025-08-12 14:27:12 +08:00
//
// ZLCellFakeView.h
// ZLCollectionView
//
// Created by zhaoliang chen on 2018/7/25.
// Copyright © 2018年 zhaoliang chen. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ZLCellFakeView : UIView
@property (nonatomic, weak)UICollectionViewCell *cell;
@property (nonatomic, strong)UIImageView *cellFakeImageView;
@property (nonatomic, strong)UIImageView *cellFakeHightedView;
@property (nonatomic, strong)NSIndexPath *indexPath;
@property (nonatomic, assign)CGPoint originalCenter;
@property (nonatomic, assign)CGRect cellFrame;
- (instancetype)initWithCell:(UICollectionViewCell *)cell;
- (void)changeBoundsIfNeeded:(CGRect)bounds;
- (void)pushFowardView;
- (void)pushBackView:(void(^)(void))completion;
@end