12345678910111213141516171819202122 |
- //
- // MoreAppCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/5.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MoreAppCell : UICollectionViewCell
- @property (strong,nonatomic) IBOutlet UIImageView *showImgView;
- @property (strong,nonatomic) IBOutlet UILabel *showTitleLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *showIcon;
- @end
- NS_ASSUME_NONNULL_END
|