如何快速更改 UISearchController 行的高度

Posted

技术标签:

【中文标题】如何快速更改 UISearchController 行的高度【英文标题】:How can i change the UISearcherController row's height in swift 【发布时间】:2016-09-27 20:05:00 【问题描述】:

如何快速更改 searchController 的行高?我已经用 searchController 设置了一个 tableview,我想让行高高一点。那太好了。

【问题讨论】:

【参考方案1】:
// swift 2.3
1. set tableView delegate

tableView.delegate = self

2. implementes the delegate method

extension ViewController: UITableViewDelegate 
    func tableView(tableView: UITableView, 
           heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat 
        return 50
    


// swift 3.0
1. set tableView delegate

tableView.delegate = self

2. implementes the delegate method

extension ViewController: UITableViewDelegate 
    func tableView(_ tableView: UITableView, 
                  heightForRowAt indexPath:IndexPath) -> CGFloat 
        return 200
    

【讨论】:

你能用 Swift 2.3 写吗?

以上是关于如何快速更改 UISearchController 行的高度的主要内容,如果未能解决你的问题,请参考以下文章

在 tvos 中更改焦点时如何关闭 UISearchController 中的键盘?

UISearchController 更改“取消”按钮标题

tvOS 14.3 UISearchController:如何锁定显示

无法在使用 UISearchController 实现的搜索栏中更改 TF 的背景颜色

如何在 iOS8 中实现 UISearchController?

在 Swift 中更改 UISearchController 的位置