UISearchController背景颜色没有文字

时间:2015-02-20 20:21:40

标签: ios swift

我使用以下代码创建了一个表视图:

    searchController = UISearchController(searchResultsController: self)

    presentViewController(searchController, animated: true, completion: nil)

在viewDidInitialize方法中。输入文本后,表视图将按预期显示:

enter image description here

如果没有在搜索字段中输入文字,我看不到表格视图。是否有在这种状态下显示表视图的技巧或是否有其他方法来自定义背景?我已经尝试将dimsBackgroundDuringPresentation设置为false,但这不起作用。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果传递nil而不是self

,则有效
searchController = UISearchController(searchResultsController: nil)