|
@@ -83,6 +83,9 @@
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];
|
|
|
|
|
|
+ //输入密码完成
|
|
|
+ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didInpuPwdOkFun) name:didInputPWDNotification object:nil];
|
|
|
+
|
|
|
[self.toolBar setHidden:YES];
|
|
|
[self.navigationBar setHidden:YES];
|
|
|
[self.navBarBGView setHidden:YES];
|
|
@@ -212,6 +215,8 @@
|
|
|
make.bottom.mas_equalTo(-TABBARHEIGHT);
|
|
|
}];
|
|
|
|
|
|
+ self.tableView.userInteractionEnabled = NO;
|
|
|
+
|
|
|
_tableHeadView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, 165+ 15 +120 +54 + 15)];
|
|
|
//_tableHeadView.backgroundColor = [UIColor hwColor:@"#F6F8FA"];
|
|
|
_tableHeadView.backgroundColor = [UIColor clearColor];
|
|
@@ -1084,4 +1089,13 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+#pragma mark 输入密码完成
|
|
|
+- (void)didInpuPwdOkFun
|
|
|
+{
|
|
|
+ KWeakSelf
|
|
|
+ mainBlock(^{
|
|
|
+ weakSelf.tableView.userInteractionEnabled = YES;
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
@end
|