|
|
@@ -39,7 +39,6 @@
|
|
|
@property (nonatomic, strong) UIView *companyInfoView;
|
|
|
@property (nonatomic, strong) UIView *otherInfoView;
|
|
|
@property (nonatomic, strong) HJJoinDetailJoinView *joinView;
|
|
|
-@property (nonatomic, strong) UIButton *applyGroupButton;
|
|
|
@property (nonatomic, strong) HJJoinApplyGroupAPIManager *applyGroupAPIManager;
|
|
|
@end
|
|
|
|
|
|
@@ -242,7 +241,7 @@
|
|
|
[detailView.scrollLayoutView.contentView addSubview:self.otherInfoView];
|
|
|
[detailView.scrollLayoutView.contentView addSubview:self.trafficView];
|
|
|
[detailView.scrollLayoutView.contentView addSubview:self.companyInfoView];
|
|
|
- [detailView.scrollLayoutView.footerView addSubview:self.applyGroupButton];
|
|
|
+ [detailView.scrollLayoutView.footerView addSubview:self.detailView.applyButton];
|
|
|
[detailView.scrollLayoutView makeConstraints];
|
|
|
}
|
|
|
|
|
|
@@ -258,10 +257,6 @@
|
|
|
|
|
|
#pragma mark - event response
|
|
|
|
|
|
-- (void)applyGroupButtonClicked:(UIButton *)sender {
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
#pragma mark - private methods
|
|
|
|
|
|
#pragma mark - getters and setters
|
|
|
@@ -335,13 +330,4 @@
|
|
|
return _joinView;
|
|
|
}
|
|
|
|
|
|
-- (UIButton *)applyGroupButton {
|
|
|
- if (_applyGroupButton == nil) {
|
|
|
- _applyGroupButton = [[UIButton alloc] init];
|
|
|
- _applyGroupButton = [UIButton hj_createGradientButtonWithTitle:@"申请岗位"];
|
|
|
- [_applyGroupButton addTarget:self action:@selector(applyGroupButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
|
|
|
- }
|
|
|
- return _applyGroupButton;
|
|
|
-}
|
|
|
-
|
|
|
@end
|