1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // StuExamsSearchView.m
- // LN_School
- //
- // Created by EchoShacolee on 2017/6/17.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import "StuExamsSearchView.h"
- @interface StuExamsSearchView ()
- {
- UILabel *startDate;
- UIButton *statrBtn;
-
- UILabel *endDate;
- UIButton *endBtn;
-
- UILabel *subjectLab;
- UIButton *subjectBtn;
-
- UILabel *countLab;
- UIButton *countBtn;
-
- UILabel *scoreLab;
- UIButton *scoreBtn;
-
- UILabel *stuCard;
- UITextField *stuTf;
-
- UILabel *jxbhLab;
- UITextField *jxbhTf;
- }
- @end
- @implementation StuExamsSearchView
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
- // Drawing code
- }
- */
- //- (instancetype)initWithFrame:(CGRect)frame
- //{
- // self = [super initWithFrame:frame];
- // if (self) {
- //
- // NSArray *labTitles = @[@"",@"",@"",@"",@"",@"",@"",@"",@""];
- // NSMutableArray *labArr = [NSMutableArray new];
- // for (int i=0; i<labTitles.count; i++) {
- // UILabel *lable = [[UILabel alloc]init];
- // [lable setText:labTitles[i] Font:14 TextColor:KSubTitleColor];
- // [self.vi];
- // }
- // }
- // return self;
- //}
- @end
|