1234567891011121314151617181920 |
- //
- // WillDoCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/19.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface WillDoCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *shortTitleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *markNumLabel;
- @property (nonatomic,copy)NSString *imageName;
- @end
|