小浣熊博客地址
- 移除搜索視圖時(shí)清空搜索框內(nèi)的文字內(nèi)容:
self.searchBar.text = nil;
- 將歷史搜索或熱門搜索的標(biāo)簽內(nèi)容顯示到輸入框:
1>. 情形分析: 搜索視圖在 A 控制器上,要實(shí)現(xiàn)點(diǎn)擊搜索視圖上的搜索標(biāo)簽, push跳轉(zhuǎn)到 B 控制器,并且將標(biāo)簽內(nèi)容傳入到 B 控制器所在的 UINavigationBar的搜索框中顯示.
2>. 思路: 點(diǎn)擊搜索標(biāo)簽,利用通知,讓A控制器push到B控制器,同時(shí)利用collectionViewCell的索引將標(biāo)簽內(nèi)容通過用戶偏好設(shè)置存儲(chǔ)到本地,然后在B控制器的 - (void)viewDidLoad;
方法中通過Key把標(biāo)簽的內(nèi)容設(shè)置到搜索框,最后在 - (void)viewDidDisappear:(BOOL)animated;
中通過Key清除指定的用戶偏好內(nèi)容.
3>. 具體代碼如下:
// 這段代碼寫在搜索視圖中
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"===> %@",self.array[indexPath.row]); // 需要將搜索關(guān)鍵字傳入搜索框
// 本地存儲(chǔ)傳值
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:_data[indexPath.row] forKey:@"_data[indexPath.row]"];
//設(shè)置同步
[defaults synchronize];
// 通知控制器 A 去push跳轉(zhuǎn)到 B
NSDictionary *dict = [[NSDictionary alloc]initWithObjectsAndKeys: self.array[indexPath.row],@"self.array[indexPath.row]", nil];
[[NSNotificationCenter defaultCenter] postNotificationName:通知名 object: self.array[indexPath.row] userInfo: dict];
}
這段代碼寫在 A 控制器:
- (void)viewDidLoad {
[super viewDidLoad];
[self loadData];
self.view.backgroundColor = [UIColor whiteColor];
//注冊(cè)通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sendTextInfomation:) name:LMSearchTextInfomationNotification object:nil];
}
//銷毀通知:
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:nil object:self];
}
這段代碼寫在通知觸發(fā)的方法中:
// 點(diǎn)擊標(biāo)簽的時(shí)候通知nav push到搜索結(jié)果控制器
- (void)sendTextInfomation:(NSNotification *)text {
NSLog(@"通知傳遞過來 == %@", text.userInfo[@"self.array[indexPath.row]"]);
self.text = text.userInfo[@"self.array[indexPath.row]"];
NSLog(@"通知內(nèi)容 == %@", self.text);
// 點(diǎn)擊鍵盤上的search調(diào)用這個(gè)方法
[_searchView removeFromSuperview]; //移除搜索視圖
[_sv removeFromSuperview]; // 搜索視圖放在UIScrollView上的(看具體情況),因此同時(shí)需要移除A控制器的子視圖scrollView.
// 移除視圖同時(shí)要收起鍵盤,然后發(fā)出通知讓控制器push一個(gè)新控制器
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];
B *vc = [[B alloc]init];
vc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
}
這段代碼寫在 B 控制器中:
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
//本地存儲(chǔ)傳遞過來的值
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
// 取指定的本地值
self.text = [defaults valueForKey:@"self.array[indexPath.row]"];
NSLog(@"本地存儲(chǔ)傳值內(nèi)容 == %@", self.text);
// 顯示到搜索框
_searchBarView.text = self.text;
}
- (void)viewDidDisappear:(BOOL)animated {
// 清除指定的用戶偏好存儲(chǔ)
[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"_data[indexPath.row]"];
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者