12345678910111213141516171819 |
- //
- // DetailMarkCell.h
- // jiaPei
- //
- // Created by apple on 16/1/13.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DetailMarkCell : UICollectionViewCell
- @property (nonatomic, retain) UIImageView *imgView;
- @property (nonatomic, retain) UILabel *titleLabel;
- @property (nonatomic, retain) UILabel *detailLabel;
- -(instancetype)initWithFrame:(CGRect)frame;
- @end
|