1234567891011121314151617181920212223 |
- //
- // ClsTheoryListCell.h
- // JSJPCoach
- //
- // Created by EchoShacolee on 2017/7/19.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ClsTheoryListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *issueNum;
- @property (weak, nonatomic) IBOutlet UILabel *kemu;
- @property (weak, nonatomic) IBOutlet UILabel *coach;
- @property (weak, nonatomic) IBOutlet UILabel *date;
- @property (weak, nonatomic) IBOutlet UILabel *status;
- @property(nonatomic,strong)NSDictionary *dic;
- +(instancetype)cellForTableView:(UITableView *)tableView;
- @end
|