12345678910111213141516171819202122 |
- //
- // KBRollingCollectionViewCell.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/10/15.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBSignInRollingUser.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KBRollingCollectionViewCell : UICollectionViewCell
- @property (nonatomic ,strong) UIImageView *headImageView;
- @property (nonatomic ,strong) UILabel *titleLable;
- @property (nonatomic ,strong) KBSignInRollingUser *model;
- @end
- NS_ASSUME_NONNULL_END
|