| 1234567891011121314151617181920 |
- //
- // NewRollButtonCell.h
- // MingMen
- //
- // Created by 罗云飞 on 2017/5/14.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewRollButton.h"
- @interface NewRollButtonCell : UICollectionViewCell
- @property(strong,nonatomic) UIImageView *img;
- @property(strong,nonatomic) UILabel *tilte;
- - (void)assignment:(NSDictionary *)model type:(NewRollButtonType)type;
- @end
|