123456789101112131415161718192021222324 |
- //
- // PFCollectionCell.h
- // PublicFund
- //
- // Created by xiaoxi on 2018/8/20.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PFCollectionCell : UIControl
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, assign) CGFloat nameFont;
- @property (nonatomic, strong) UIColor *nameColor;
- @property (nonatomic, copy) NSString *iconName;
- @property (nonatomic, assign) CGSize iconSize;
- @end
|