ReplayMeSearchVC.m 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. //
  2. // ReplayMeSearchVC.m
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/20.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "ReplayMeSearchVC.h"
  9. #import "InfoSearchView.h"
  10. #import "SearchTypeSection.h"
  11. #import "SearchTypeCell.h"
  12. #import "SearchHistoryCell.h"
  13. #import "ReplayMeCell.h"
  14. #import "HomeDetailController.h"
  15. #import "MyApprovalBCell.h"
  16. #import <YYModel/YYModel.h>
  17. #import "MyApprovalPageDetail.h"
  18. #import "DrawerView.h"
  19. #import "TabBarController.h"
  20. #define PYSEARCH_MARGIN 10
  21. static NSString * SearchDetailViewCellID = @"SearchDetailViewCellId";
  22. static NSString * MyApprovalBCellID = @"MyApprovalBCell";
  23. @interface ReplayMeSearchVC () <InfoSearchViewDelegate, UITableViewDataSource, UITableViewDelegate>
  24. @property (nonatomic, strong) InfoSearchView *topNavSearch;
  25. @property (nonatomic, strong) UIView *hisNoView;
  26. @property (strong,nonatomic) DrawerView *drawerView;
  27. @property (nonatomic, copy) NSArray *warmArray;
  28. @property (nonatomic, copy) NSArray *coldArray;
  29. // 历史记录tableView
  30. @property (nonatomic, strong) TDTableView *historyTableView;
  31. // 历史记录tableViewHeaderContainer
  32. @property (nonatomic, strong) UIView *historyHeaderContainer;
  33. // 历史记录tableHeaderView
  34. @property (nonatomic, strong) UIView *historyTableHeaderView;
  35. @property (nonatomic, strong)SearchTypeSection *historyHeaderTitleView;
  36. // 搜索结果tableView
  37. @property (nonatomic, strong) UITableView *resultTableView;
  38. // 历史记录
  39. @property (nonatomic, strong) NSMutableArray *historyArray;
  40. // 搜索结果
  41. @property (nonatomic, strong) NSMutableArray<Item *> *resultArray;
  42. @property (nonatomic, copy) NSString *searchStr;
  43. @property (nonatomic, strong) UIView *noDataView;
  44. @property (nonatomic, strong) UILabel *noDataTipLabel;
  45. @end
  46. @implementation ReplayMeSearchVC
  47. -(DrawerView *)drawerView{
  48. if(!_drawerView){
  49. _drawerView = [[DrawerView alloc] init];
  50. }
  51. return _drawerView;
  52. }
  53. - (void)viewDidLoad {
  54. [super viewDidLoad];
  55. self.view.backgroundColor = [UIColor whiteColor];
  56. //TODO:测试数据
  57. _warmArray = @[@"信仰的力量", @"牛顿改革"];
  58. _coldArray = @[@"科技", @"国家组织", @"泰德仁和"];
  59. [self.view addSubview:self.topNavSearch];
  60. [self.view addSubview:self.historyTableView];
  61. [self initHistoryTableHeaderView];
  62. // [self.view addSubview:self.thinkTableView];
  63. [self.view addSubview:self.resultTableView];
  64. [self.resultTableView mas_makeConstraints:^(MASConstraintMaker *make) {
  65. make.left.right.mas_equalTo(self.view);
  66. make.top.mas_equalTo(self.topNavSearch.mas_bottom);
  67. if (@available(iOS 11.0, *)) {
  68. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  69. } else {
  70. make.bottom.equalTo(self.view.mas_bottom);
  71. }
  72. }];
  73. [self.view addSubview:self.noDataView];
  74. self.noDataView.frame = self.historyTableView.frame;
  75. [self.noDataView addSubview:self.noDataTipLabel];
  76. [self.noDataTipLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  77. make.left.right.equalTo(self.noDataView);
  78. make.top.mas_offset(32);
  79. }];
  80. [self.noDataView setHidden:YES];
  81. [self.resultTableView registerNib:[UINib nibWithNibName:@"MyApprovalBCell" bundle:nil] forCellReuseIdentifier:MyApprovalBCellID];
  82. [self.topNavSearch.searchBar becomeFirstResponder];
  83. [self.historyTableView setHidden:NO];
  84. [self.resultTableView setHidden:YES];
  85. }
  86. // 请求列表
  87. - (void)getListData:(NSString *)keyword IsClickSearchAction:(BOOL)isClickSearchAction{
  88. [self.topNavSearch.searchBar resignFirstResponder];
  89. [self.historyTableView setHidden:YES];
  90. [self.resultTableView reloadData];
  91. [self.resultTableView setHidden:NO];
  92. // WEAKSELF
  93. // if (isClickSearchAction) {
  94. // SHOWLOADING
  95. // [weakSelf.noDataView setHidden:YES];
  96. // [self.resultTableView setHidden:NO];
  97. // [self.historyTableView setHidden:YES];
  98. // }
  99. // [self.resultArray removeAllObjects];
  100. //
  101. // [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Notice_list_Post] parameters: @{@"page":@1,@"perPage":@100,@"keyword":keyword} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  102. // REMOVESHOW
  103. // NSDictionary *dic = (NSDictionary *)responseObject;
  104. // NSLog(@"首页搜索列表数据%@=====================================",dic[@"total"]);
  105. // HomeArticleModel *model = [HomeArticleModel yy_modelWithDictionary:dic];
  106. // weakSelf.resultArray = [NSMutableArray arrayWithArray: model.Items];
  107. //
  108. //
  109. // [weakSelf.noDataView setHidden:YES];
  110. // if (ISEmptyString(self.searchStr)) {
  111. // //显示历史记录
  112. // [weakSelf.historyTableView setHidden:NO];
  113. // [weakSelf.resultTableView reloadData];
  114. // [weakSelf.resultTableView setHidden:YES];
  115. // } else {
  116. // [weakSelf.historyTableView setHidden:YES];
  117. // [weakSelf.resultTableView reloadData];
  118. // [weakSelf.resultTableView setHidden:NO];
  119. // // 点击搜索按钮
  120. //// if (!model.Items.count) {
  121. //// // 文章列表为空,显示无结果
  122. //// [self.noDataView setHidden:NO];
  123. //// } else {
  124. //// // 文章列表不为空
  125. //// [weakSelf.historyTableView setHidden:YES];
  126. //// [weakSelf.resultTableView reloadData];
  127. //// [weakSelf.resultTableView setHidden:NO];
  128. //// }
  129. // }
  130. // } failure:^(NSError * _Nonnull error) {
  131. // SHOWERROR([ZYCTool handerResultData:error])
  132. // }];
  133. }
  134. - (BOOL)hidesBottomBarWhenPushed
  135. {
  136. return YES;
  137. }
  138. - (void)viewWillAppear:(BOOL)animated {
  139. [super viewWillAppear:animated];
  140. [self.navigationController.navigationBar setHidden:YES];
  141. }
  142. #pragma mark - InfoSearchViewDelegate
  143. // 点击搜索按钮
  144. - (void)searchButtonAction:(UISearchBar *)searchBar {
  145. self.searchStr = searchBar.text;
  146. // 添加历史记录,刷新historyTable
  147. [self insertHistorySearchStr:self.searchStr];
  148. // 更新本地历史记录
  149. self.historyArray = [NSMutableArray arrayWithArray:[_TDFileStorage loadHistorySearchBySearchType:HistorySearchType_Home]];
  150. // 更新tableViewHeader的高度
  151. if (self.historyArray.count == 0) {
  152. self.hisNoView.hidden = NO;
  153. }else{
  154. self.hisNoView.hidden = YES;
  155. }
  156. [self addAndLayoutTagsWithTagsContentView:self.historyTableHeaderView tagTexts:self.historyArray];
  157. [self resetHistoryHeaderViewHeight];
  158. [self.historyTableView reloadData];
  159. // 网络请求
  160. [self getListData:self.searchStr IsClickSearchAction:YES];
  161. [self.view endEditing:YES];
  162. }
  163. // 文本改变回调
  164. - (void)textDidChange:(NSString *)text {
  165. self.searchStr = text;
  166. if (ISEmptyString(text)) {
  167. // 没有文本显示历史记录cell
  168. [self.noDataView setHidden:YES];
  169. [self.historyTableView setHidden:NO];
  170. // [self.thinkTableView setHidden:YES];
  171. [self.resultTableView setHidden:YES];
  172. } else {
  173. // 有文本,就去搜索文章列表,有联想显示联想,没有联想显示历史记录
  174. [self getListData:text IsClickSearchAction:NO];
  175. }
  176. }
  177. #pragma mark - UITableViewDataSource && UITableViewDelegate
  178. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  179. return 1;
  180. }
  181. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
  182. return 0.1;
  183. }
  184. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  185. if ([tableView isEqual:self.historyTableView]) {
  186. return 0;
  187. }else {
  188. return 4;
  189. }
  190. }
  191. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  192. if ([tableView isEqual:self.historyTableView]) {
  193. return 34;
  194. }else {
  195. return UITableViewAutomaticDimension;
  196. }
  197. }
  198. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  199. if ([tableView isEqual:self.historyTableView]) {
  200. SearchHistoryCell * searchHistoryCell = (SearchHistoryCell *)[tableView dequeueReusableCellWithIdentifier:@"SearchHistoryCell"];
  201. if (!searchHistoryCell) {
  202. searchHistoryCell = [[SearchHistoryCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"SearchHistoryCell"];
  203. }
  204. [searchHistoryCell setCurrentHistoryData:_historyArray[indexPath.row]];
  205. return searchHistoryCell;
  206. }
  207. else {
  208. ReplayMeCell * cell = [ReplayMeCell configCell:tableView indexPath:indexPath];
  209. [cell setDataWithText:@"会议"];
  210. if (indexPath.row >= 3) {
  211. cell.redV.hidden = YES;
  212. }
  213. return cell;
  214. }
  215. }
  216. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  217. [self.view endEditing:YES];
  218. if ([tableView isEqual:self.historyTableView]) {
  219. self.searchStr = self.historyArray[indexPath.row];
  220. [self.topNavSearch setNowSearchData:self.searchStr];
  221. [self getListData:self.searchStr IsClickSearchAction:YES];
  222. } else {
  223. }
  224. }
  225. #pragma mark - 查重
  226. - (void)insertHistorySearchStr:(NSString *)string {
  227. for (NSString *cache in _historyArray) {
  228. // 查重
  229. if ([cache isEqualToString:string]) {
  230. return;
  231. }
  232. }
  233. [_historyArray insertObject:string atIndex:0];
  234. if (_historyArray.count > 10) {
  235. NSArray *orderArray = [_historyArray subarrayWithRange:NSMakeRange(0, 10)];
  236. _historyArray = orderArray.mutableCopy;
  237. }
  238. [_TDFileStorage saveHistorySearchBySearchType:HistorySearchType_Home WithArr:_historyArray];
  239. }
  240. #pragma mark - getter
  241. - (InfoSearchView *)topNavSearch {
  242. if (!_topNavSearch) {
  243. _topNavSearch = [[InfoSearchView alloc] initWithFrame:CGRectMake(0, (IS_IPHONEX?40:20), kGXScreenWidth, 45) type:InfoSearchViewTypeDefault];
  244. _topNavSearch.delegate = self;
  245. WEAKSELF
  246. _topNavSearch.backBlock = ^{
  247. [weakSelf.navigationController popViewControllerAnimated:YES];
  248. };
  249. _topNavSearch.menuBlock = ^{
  250. [weakSelf.view endEditing:YES];
  251. [[UtilsTools getWindow] addSubview:weakSelf.drawerView];
  252. weakSelf.drawerView.SelectDrawerBlock = ^(NSIndexPath * _Nonnull indexPath) {
  253. if (![weakSelf.tabBarController isKindOfClass:[TabBarController class]]) {
  254. [TabBarController sharedTabBarController].tabBar.hidden = NO;
  255. [weakSelf.tabBarController.navigationController popViewControllerAnimated:NO];
  256. }
  257. if ([weakSelf.navigationController.viewControllers count] > 1) {
  258. [weakSelf.navigationController popToRootViewControllerAnimated:NO];
  259. }
  260. switch (indexPath.section) {
  261. case 0:
  262. {
  263. [[TabBarController sharedTabBarController] setSelectedIndex:indexPath.row];
  264. }
  265. break;
  266. case 1:
  267. {
  268. switch (indexPath.row) {
  269. case 0:
  270. {
  271. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  272. }
  273. break;
  274. case 1:
  275. {
  276. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  277. }
  278. break;
  279. default:
  280. {
  281. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  282. }
  283. break;
  284. }
  285. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  286. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(indexPath.row)}];
  287. });
  288. }
  289. break;
  290. default:
  291. {
  292. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  293. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  294. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(4 + indexPath.row)}];
  295. });
  296. }
  297. break;
  298. }
  299. };
  300. weakSelf.drawerView.frame = CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT);// - kNavigationHeight
  301. };
  302. }
  303. return _topNavSearch;
  304. }
  305. - (TDTableView *)historyTableView {
  306. if (!_historyTableView) {
  307. _historyTableView = [[TDTableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
  308. _historyTableView.dataSource = self;
  309. _historyTableView.delegate = self;
  310. _historyTableView.frame = CGRectMake(0, (IS_IPHONEX?40:20)+45, kGXScreenWidth, kGXScreenHeigh-(IS_IPHONEX?40:20)-45);
  311. }
  312. return _historyTableView;
  313. }
  314. - (UITableView *)resultTableView {
  315. if (!_resultTableView) {
  316. _resultTableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  317. _resultTableView.dataSource = self;
  318. _resultTableView.delegate = self;
  319. _resultTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  320. }
  321. return _resultTableView;
  322. }
  323. - (NSMutableArray *)historyArray {
  324. if (!_historyArray) {
  325. _historyArray = [_TDFileStorage loadHistorySearchBySearchType:HistorySearchType_XinYuan].mutableCopy;
  326. }
  327. return _historyArray;
  328. }
  329. - (NSMutableArray<Item *> *)resultArray {
  330. if (!_resultArray) {
  331. _resultArray = [NSMutableArray<Item *> array];
  332. }
  333. return _resultArray;
  334. }
  335. - (UIView *)noDataView {
  336. if (!_noDataView) {
  337. _noDataView = [UIView new];
  338. _noDataView.backgroundColor = [UIColor whiteColor];
  339. }
  340. return _noDataView;
  341. }
  342. - (UILabel *)noDataTipLabel {
  343. if (!_noDataTipLabel) {
  344. _noDataTipLabel = [UILabel new];
  345. _noDataTipLabel.text = @"暂无搜索结果";
  346. _noDataTipLabel.font = Kfont(15);
  347. _noDataTipLabel.textColor = kColorFromRGB(0x999999);
  348. _noDataTipLabel.textAlignment = NSTextAlignmentCenter;
  349. }
  350. return _noDataTipLabel;
  351. }
  352. - (UIView *)historyTableHeaderView {
  353. if (!_historyTableHeaderView) {
  354. _historyTableHeaderView = [UIView new];
  355. _historyTableHeaderView.backgroundColor = [UIColor whiteColor];;
  356. }
  357. return _historyTableHeaderView;
  358. }
  359. - (SearchTypeSection *)historyHeaderTitleView {
  360. if (!_historyHeaderTitleView) {
  361. _historyHeaderTitleView = [[SearchTypeSection alloc] initWithFrame:CGRectMake(0, 0, kGXScreenWidth, 44)];
  362. }
  363. return _historyHeaderTitleView;
  364. }
  365. #pragma mark - historyHeaderView
  366. // 添加tagView
  367. - (void)addAndLayoutTagsWithTagsContentView:(UIView *)contentView tagTexts:(NSArray<NSString *> *)tagTexts;
  368. {
  369. [contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
  370. NSMutableArray *tagsM = [NSMutableArray array];
  371. for (int i = 0; i < tagTexts.count; i++) {
  372. UILabel *label = [self labelWithTitle:tagTexts[i]];
  373. [label addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tagDidCLick:)]];
  374. [contentView addSubview:label];
  375. [tagsM addObject:label];
  376. }
  377. CGFloat currentX = 0;
  378. CGFloat currentY = 0;
  379. CGFloat countRow = 0;
  380. CGFloat countCol = 0;
  381. CGFloat leftMargin = 12;
  382. for (int i = 0; i < contentView.subviews.count; i++) {
  383. UILabel *subView = contentView.subviews[i];
  384. // When the number of search words is too large, the width is width of the contentView
  385. if (subView.width > contentView.width) {
  386. subView.width = contentView.width;
  387. }
  388. if (leftMargin + currentX + subView.width + PYSEARCH_MARGIN * countRow > contentView.width) {
  389. subView.x = leftMargin;
  390. subView.y = (currentY += subView.height) + PYSEARCH_MARGIN * ++countCol;
  391. currentX = subView.width;
  392. countRow = 1;
  393. } else {
  394. subView.x = leftMargin + (currentX += subView.width) - subView.width + PYSEARCH_MARGIN * countRow;
  395. subView.y = currentY + PYSEARCH_MARGIN * countCol;
  396. countRow ++;
  397. }
  398. }
  399. }
  400. // 创建label
  401. - (UILabel *)labelWithTitle:(NSString *)title
  402. {
  403. UILabel *label = [[UILabel alloc] init];
  404. label.userInteractionEnabled = YES;
  405. label.font = [UIFont systemFontOfSize:14];
  406. label.text = title;
  407. label.textColor = [UIColor grayColor];
  408. label.backgroundColor = kColorFromRGB(0xfafafa);
  409. label.textAlignment = NSTextAlignmentCenter;
  410. [label sizeToFit];
  411. label.width += 20;
  412. label.height += 14;
  413. label.layer.cornerRadius = label.height / 2;
  414. label.clipsToBounds = YES;
  415. return label;
  416. }
  417. - (void)tagDidCLick:(UITapGestureRecognizer *)gr
  418. {
  419. UILabel *label = (UILabel *)gr.view;
  420. self.searchStr = label.text;
  421. [self.topNavSearch setNowSearchData:self.searchStr];
  422. [self getListData:self.searchStr IsClickSearchAction:YES];
  423. }
  424. - (UIView *)historyHeaderContainer {
  425. if (!_historyHeaderContainer) {
  426. _historyHeaderContainer = [UIView new];
  427. _historyHeaderContainer.backgroundColor = [UIColor whiteColor];
  428. }
  429. return _historyHeaderContainer;
  430. }
  431. // 创建historyTableView的headerView
  432. - (void)initHistoryTableHeaderView {
  433. [self.historyHeaderTitleView setSectionTitle:@"最近搜索"];
  434. WEAKSELF
  435. self.historyHeaderTitleView.rightAction = ^{
  436. UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
  437. UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  438. // 清空历史记录
  439. [_TDFileStorage saveHistorySearchBySearchType:HistorySearchType_Home WithArr:@[]];
  440. weakSelf.historyArray = [NSMutableArray arrayWithArray:[_TDFileStorage loadHistorySearchBySearchType:HistorySearchType_Home]];
  441. [weakSelf addAndLayoutTagsWithTagsContentView:weakSelf.historyTableHeaderView tagTexts:weakSelf.historyArray];
  442. [weakSelf resetHistoryHeaderViewHeight];
  443. if (weakSelf.historyArray.count == 0) {
  444. weakSelf.hisNoView.hidden = NO;
  445. }else{
  446. weakSelf.hisNoView.hidden = YES;
  447. }
  448. [weakSelf.historyTableView reloadData];
  449. }];
  450. UIAlertController *tmpVc = [UIAlertController alertControllerWithTitle:@"提示" message:@"确定要删除最近搜索?" preferredStyle:UIAlertControllerStyleAlert];
  451. [tmpVc addAction:action1];
  452. [tmpVc addAction:action2];
  453. [weakSelf presentViewController:tmpVc animated:YES completion:nil];
  454. };
  455. [self.historyHeaderContainer addSubview:self.historyHeaderTitleView];
  456. self.historyTableHeaderView.frame = CGRectMake(0, self.historyHeaderTitleView.height + 13, kScreenWidth, 0);
  457. [self addAndLayoutTagsWithTagsContentView:self.historyTableHeaderView tagTexts:self.historyArray];
  458. CGFloat height = CGRectGetMaxY(self.historyTableHeaderView.subviews.lastObject.frame);
  459. self.historyTableHeaderView.frame = CGRectMake(0, self.historyHeaderTitleView.height + 13, kScreenWidth, height);
  460. [self.historyHeaderContainer addSubview:self.historyTableHeaderView];
  461. [self resetHistoryHeaderViewHeight];
  462. self.historyTableView.tableHeaderView = self.historyHeaderContainer;
  463. self.historyTableView.tableFooterView = self.hisNoView;
  464. if (self.historyArray.count == 0) {
  465. self.hisNoView.hidden = NO;
  466. }else{
  467. self.hisNoView.hidden = YES;
  468. }
  469. UILabel * label = [UILabel new];
  470. label.text = @"暂无搜索记录!";
  471. label.font = [UIFont systemFontOfSize:14];
  472. label.textColor = UIColorHex(0x999999);
  473. [self.hisNoView addSubview:label];
  474. [label mas_makeConstraints:^(MASConstraintMaker *make) {
  475. make.center.mas_equalTo(self.hisNoView);
  476. }];
  477. }
  478. - (UIView *)hisNoView
  479. {
  480. if (!_hisNoView) {
  481. _hisNoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 200)];
  482. _hisNoView.hidden = YES;
  483. }
  484. return _hisNoView;
  485. }
  486. // 更新header高度
  487. - (void)resetHistoryHeaderViewHeight {
  488. CGFloat containerHeight = CGRectGetMaxY(self.historyHeaderContainer.subviews.lastObject.frame);
  489. self.historyHeaderContainer.frame = CGRectMake(0, 0, kScreenWidth, containerHeight);
  490. }
  491. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  492. {
  493. [self.topNavSearch.searchBar resignFirstResponder];
  494. }
  495. @end