|
|
@@ -59,7 +59,7 @@ UIGestureRecognizerDelegate
|
|
|
- (void)viewDidLoad {
|
|
|
[super viewDidLoad];
|
|
|
self.title = @"工作经验";
|
|
|
-
|
|
|
+ self.view.backgroundColor = COLOR_GRAYFA5;
|
|
|
[self.view addSubview:self.scrollLayoutView];
|
|
|
[self.scrollLayoutView.contentView addSubview:self.previousNextView];
|
|
|
[self.previousNextView addSubview:self.companyView];
|
|
|
@@ -291,6 +291,7 @@ UIGestureRecognizerDelegate
|
|
|
_companyView.contentTextField.keyboardType = UIKeyboardTypeDefault;
|
|
|
_companyView.contentTextField.text = self.experience[kHJResumeKeyWorkCompany];
|
|
|
_companyView.contentTextField.maxLength = 100;
|
|
|
+ _companyView.backgroundColor = [UIColor whiteColor];
|
|
|
}
|
|
|
return _companyView;
|
|
|
}
|
|
|
@@ -305,6 +306,7 @@ UIGestureRecognizerDelegate
|
|
|
_postView.contentTextField.keyboardType = UIKeyboardTypeDefault;
|
|
|
_postView.contentTextField.text = self.experience[kHJResumeKeyWorkPosition];
|
|
|
_postView.contentTextField.maxLength = 50;
|
|
|
+ _postView.backgroundColor = [UIColor whiteColor];
|
|
|
}
|
|
|
return _postView;
|
|
|
}
|
|
|
@@ -318,6 +320,7 @@ UIGestureRecognizerDelegate
|
|
|
_startDateView.contentTextField.delegate = self;
|
|
|
_startDateView.contentTextField.inputView = self.datePickerView;
|
|
|
_startDateView.contentTextField.text = self.experience[kHJResumeKeyWorkStartDate];
|
|
|
+ _startDateView.backgroundColor = [UIColor whiteColor];
|
|
|
}
|
|
|
return _startDateView;
|
|
|
}
|
|
|
@@ -331,6 +334,7 @@ UIGestureRecognizerDelegate
|
|
|
_endDateView.contentTextField.placeholder = @"点击选择离职时间";
|
|
|
_endDateView.contentTextField.inputView = self.datePickerView;
|
|
|
_endDateView.contentTextField.text = self.experience[kHJResumeKeyWorkEndDate];
|
|
|
+ _endDateView.backgroundColor = [UIColor whiteColor];
|
|
|
}
|
|
|
return _endDateView;
|
|
|
}
|
|
|
@@ -399,9 +403,8 @@ UIGestureRecognizerDelegate
|
|
|
{
|
|
|
_scrollLayoutView = [[FBScrollLayoutView alloc] init];
|
|
|
_scrollLayoutView.delegate = self;
|
|
|
- _scrollLayoutView.backgroundColor = COLOR_GRAYFA5;
|
|
|
+ _scrollLayoutView.scrollView.backgroundColor = COLOR_GRAYFA5;
|
|
|
_scrollLayoutView.contentView.backgroundColor = COLOR_GRAYFA5;
|
|
|
-
|
|
|
}
|
|
|
return _scrollLayoutView;
|
|
|
}
|