// // FKAddIdCardController.m // FirstLink // // Created by jack on 15/11/28. // Copyright © 2015年 FirstLink. All rights reserved. // #import "FKAddIdCardController.h" #import "FKAddIdCardCenter.h" @implementation FKAddIdCardController - (instancetype)init{ if (self = [super init]) { self.idCardCenter = [[FKAddIdCardCenter alloc]init]; } return self; } - (void)configNavBar{ self.navigationItem.title = @"新增身份证信息"; } - (void)configActionBtnInPickCell:(FKBindIdCardPickCell *)pickCell{ pickCell.cancelBtn.hidden = YES; pickCell.moreIdBtn.hidden = YES; pickCell.cancelBtn.userInteractionEnabled = NO; pickCell.moreIdBtn.userInteractionEnabled = NO; [pickCell.saveBtn setTitle:@"保 存" forState:UIControlStateNormal]; } - (void)configTipCell:(FKBindTipCell *)tipCell{ tipCell.titleLabel.text = @"请完善身份证信息"; tipCell.iconImgView.image = [UIImage imageNamed:@"yellow_alert"]; } - (void)goToBack{ if (self.finishToBack){ self.finishToBack(); } [self.navigationController popViewControllerAnimated:YES]; } @end