3

我的目标是我的应用程序应该在 iOS 7 和 iOS 8 上运行。由于 UISearchDisplayController 在 iOS 8 中已弃用,我将 UISearchController 用于 iOS 8。但它在 iOS 7 中不起作用。如果我使用 UISearchDisplayController 那么它将在 iOS 7 中运行. 但是为这两个平台实现搜索控制器的最佳方法是什么?在 iOS 8 中,我实现了如下搜索控制器 -

    override func viewDidLoad() {
            super.viewDidLoad()

            // Search Controller Setup
            searchController = UISearchController(searchResultsController: nil)
            searchController.searchBar.delegate = self
            searchController.searchResultsUpdater = self
            searchController.dimsBackgroundDuringPresentation = false
            searchController.searchBar.placeholder = "ব্র্যান্ড/সংস্থা/দোকান খুঁজুন"

            // Make sure the that the search bar is visible within the navigation bar.
            searchController.searchBar.sizeToFit()
            tableView.tableHeaderView = searchController.searchBar
            definesPresentationContext = true
}

对于 SWIFT 中的 iOS 7,我如何像上面那样以编程方式实现 UISearchDisplayController 以确保搜索栏在导航栏中可见?

4

2 回答 2

1

使用ios7的方式。即使它弃用了。否则您将不得不编写两段代码,一段用于处理 iOS7,另一段用于处理 iOS8。如果您的目标是 iOS 7,Xcode 不会向您显示警告。

于 2015-01-27T10:04:37.320 回答
1
    searchController = UISearchController(searchResultsController: nil)

// 改变搜索栏的外观

    searchController.searchBar.tintColor = UIColor.whiteColor()
    searchController.searchBar.barTintColor = UIColor(red: 235.0/255.0, green: 73.0/255.0, blue: 27.0/255.0, alpha: 1.0)
    searchController.searchBar.placeholder = "Search Something"
    searchController.searchBar.prompt = "Quick Search"

// 使 searchBar 出现在导航栏中

    searchController.searchBar.sizeToFit()
    tableView.tableHeaderView = searchController.searchBar
    definesPresentationContext = true

// 您不需要将委托设置为 self,而是

    searchController.searchResultsUpdater = self
    searchController.dimsBackgroundDuringPresentation = false // important

在此之后,您需要遵守 UISearchResultsUpdating 协议并实现,

func updateSearchResultsForSearchController(searchController: UISearchController)

这将包含您的搜索逻辑。

于 2015-03-14T06:07:35.523 回答