1234567891011121314151617181920212223 |
- //
- // StuExamListCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/6/25.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface StuExamListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *name;
- @property (weak, nonatomic) IBOutlet UILabel *subject;
- @property (weak, nonatomic) IBOutlet UILabel *score;
- @property (weak, nonatomic) IBOutlet UILabel *start;
- @property (weak, nonatomic) IBOutlet UILabel *end;
- @property (weak, nonatomic) IBOutlet UILabel *sfzh;
- +(instancetype)cellForTableView:(UITableView *)tableView;
- @property(nonatomic,strong)NSDictionary *dic;
- @end
|