uisearchcontroller

    0熱度

    1回答

    我有包含名稱,圖片網址和許多值的數組,我想在搜索結果時更改圖片。這裏只更改名稱值。所以如何在數組中添加圖像值? if (searchText.text.length == 0) { isSearching = NO; } else { isSearching = YES; filterdResult = [[NSMutableArray alloc]init];

    0熱度

    1回答

    我有一個UITableViewController顯示按字母表的國家組。我在代碼中加了UISearchController: let searchController = UISearchController(searchResultsController: nil) searchController.searchBar.placeholder = "" searchController.s

    0熱度

    1回答

    我想實現一個簡單的搜索項目。我採取了TableViewController並在StoryBoard中分配了UISearchBar。我在屬性檢查器「佔位符部分」中分配了佔位符文本。當我運行項目佔位符文本時顯示完美。 我慢慢地開始實施搜索方法。我一直在下面的教程,在一個時間點,我不得不在viewDidLoad中添加 tableView.tableHeaderView = searchControlle

    0熱度

    4回答

    我有一個UISearchController剛過我的UITableView,我的桌子上有很多recrods。當用戶進入桌子底部時,他必須回到頂部才能看到搜索欄。下面你可以看到我是如何創建的搜索欄: - (void) showSearchBar { _searchController = [[UISearchController alloc] initWithSearchResultsCo

    0熱度

    1回答

    我使用搜索欄來過濾我的表格視圖。我在顯示可搜索內容的相同視圖控制器中顯示搜索結果。它工作正常。除了一件事 - 3D Peek and Pop不適用於搜索結果。 我曾嘗試Storyboard segue中的'Peek & Pop'複選框。我曾嘗試編寫我的TableViewController中的pop pop &。結果是一樣的:peek & pop適用於表格視圖單元格,但不適用於搜索結果單元格。 這

    0熱度

    1回答

    我正在使用swift 3中的項目,並且我有一個特定的UIViewController,我有一個UITableView,並且在其單元格上填充數據時,數據是從服務器獲取,並將其分配給JSON類型的數組。因此,我有一個UISearch欄放置在同一個UIViewController中的不同位置(而不是UITableView的頭部)。我的要求是實現搜索欄的功能,我可以過濾和搜索我的UITableView的數

    1熱度

    1回答

    我有這個項目,彈出一個模式,過濾搜索結果 - UISearchController可見在我的導航欄,當模式彈出。我無法刪除它,因爲它看起來很奇怪,因爲模式不能填滿整個屏幕。問題是,當模式彈出時,UISearchController仍然是活動的,如果我點擊它,這一切都變得瘋狂 - 所以我想禁用輸入字段,但我真的不知道如何:/ 那麼有誰知道,如何禁用UISearchController中的輸入字段?

    0熱度

    1回答

    自動演示UISearchController和我自己提供的搜索控​​制器之間的行爲不同。 @implementation MyViewComtroller // click search barbutton on right of navigationBar - (void)searchAction:(id)sender { ArticleSearchViewController

    1熱度

    1回答

    我按照this post中的重要方向對搜索欄和不顯示取消按鈕的搜索控制器進行了子類化。但是,當我開始編輯時,我的搜索欄中現在沒有光標。我已經嘗試設置搜索欄的色調,我已經在許多帖子中以各種代理方法看到了這一點。色彩在技術上正確設置,因爲我可以通過將我的搜索控制器設置爲標準UISearchController進行測試時看到。但是,只要我將它設置爲我的子類SearchControllerWithoutC

    0熱度

    1回答

    所以我一直在尋找,但無法就此回答這個問題。我有一個UISearchBar searchBar設置過濾我的數據。我遇到了範圍功能,但創建了我自己的範圍按鈕。所以我的問題是,我如何鏈接我所做的這些按鈕,以便它們可以執行與UISearchBar範圍相同的操作?