StuExamsSearchView.m 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // StuExamsSearchView.m
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/6/17.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import "StuExamsSearchView.h"
  9. @interface StuExamsSearchView ()
  10. {
  11. UILabel *startDate;
  12. UIButton *statrBtn;
  13. UILabel *endDate;
  14. UIButton *endBtn;
  15. UILabel *subjectLab;
  16. UIButton *subjectBtn;
  17. UILabel *countLab;
  18. UIButton *countBtn;
  19. UILabel *scoreLab;
  20. UIButton *scoreBtn;
  21. UILabel *stuCard;
  22. UITextField *stuTf;
  23. UILabel *jxbhLab;
  24. UITextField *jxbhTf;
  25. }
  26. @end
  27. @implementation StuExamsSearchView
  28. /*
  29. // Only override drawRect: if you perform custom drawing.
  30. // An empty implementation adversely affects performance during animation.
  31. - (void)drawRect:(CGRect)rect {
  32. // Drawing code
  33. }
  34. */
  35. //- (instancetype)initWithFrame:(CGRect)frame
  36. //{
  37. // self = [super initWithFrame:frame];
  38. // if (self) {
  39. //
  40. // NSArray *labTitles = @[@"",@"",@"",@"",@"",@"",@"",@"",@""];
  41. // NSMutableArray *labArr = [NSMutableArray new];
  42. // for (int i=0; i<labTitles.count; i++) {
  43. // UILabel *lable = [[UILabel alloc]init];
  44. // [lable setText:labTitles[i] Font:14 TextColor:KSubTitleColor];
  45. // [self.vi];
  46. // }
  47. // }
  48. // return self;
  49. //}
  50. @end