Commit e9bb3198 authored by admin's avatar admin

首页及首页搜索完善 添加在线抽查

parent bd40f854
...@@ -51,7 +51,9 @@ ...@@ -51,7 +51,9 @@
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
[super viewWillAppear:animated]; [super viewWillAppear:animated];
self.navigationController.navigationBar.hidden = NO;
self.tabBarController.tabBar.hidden = YES;
} }
#pragma mark - Private Mothods #pragma mark - Private Mothods
......
...@@ -26,7 +26,13 @@ ...@@ -26,7 +26,13 @@
@end @end
@implementation OnLineCompleteViewController @implementation OnLineCompleteViewController
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.navigationController.navigationBar.hidden = NO;
self.tabBarController.tabBar.hidden = YES;
}
- (void)viewDidLoad - (void)viewDidLoad
{ {
[super viewDidLoad]; [super viewDidLoad];
......
...@@ -129,7 +129,8 @@ ...@@ -129,7 +129,8 @@
[spot setValuesForKeysWithDictionary:dict]; [spot setValuesForKeysWithDictionary:dict];
[tempArray addObject:spot]; [tempArray addObject:spot];
} }
[_allSpotCheckList addObjectsFromArray:tempArray]; _allSpotCheckList = [NSMutableArray arrayWithArray:tempArray];
// [_allSpotCheckList addObjectsFromArray:tempArray];
if (_allSpotCheckList.count == 0) { if (_allSpotCheckList.count == 0) {
if (_tableView) { if (_tableView) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment