123456789101112131415161718192021 |
- //
- // CGXVerticalMenuCollectionCell..h
- // CGXVerticalMenuView-OC
- //
- // Created by CGX on 2018/05/01.
- // Copyright © 2019 CGX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CGXVerticalMenuCollectionSectionModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CGXVerticalMenuCollectionCell : UICollectionViewCell
- @property (nonatomic , strong) UIImageView *urlImageView;
- @property (nonatomic , strong) UILabel *titleLabel;
- - (void)reloadData:(CGXVerticalMenuCollectionItemModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|