0
我有一個UISearchBar和一個seperat UITableView。當用戶在SearchBar中輸入某些內容時,我會調用我的API,然後重新加載TableView以顯示新的結果。每當TableView重新加載SearchBar失去焦點。我怎樣才能防止這一點?UISearchBar失去焦點
我試過[_searchBar becomeFirstResponder];
但它沒有幫助。任何其他想法?
感謝您的幫助。
(編輯)的代碼,我用重裝數據:
[self.fetchedResultsController updateWithObjectList:_newList removeMissing:YES];
- (void)updateWithObjectList:(NSArray *)objectList removeMissing:(BOOL)removeMissing {
if (removeMissing) {
[self removeObjectList:[_objects allValues]];
}
[self addObjectList:objectList];
}
你如何重新加載該tableview中的數據?發佈您正在使用的代碼來執行此操作。這不是正常的行爲。 –
其他人寫道,但我認爲這是關於我添加到我的文章。 –