在tvOS上禁用UISearchController上的blury背景

时间:2015-10-12 16:44:04

标签: uisearchbar tvos uisearchcontroller

由于我们在整个tvOS应用程序中使用自定义背景图像,因此我需要UISearchController来模糊背景。显然,dimsBackgroundDuringPresentation标记在tvOS下的UISearchController上不可用。有没有其他方法可以摆脱它?

1 个答案:

答案 0 :(得分:7)

设置UISearchController *searchController; searchController.obscuresBackgroundDuringPresentation = NO; 标志。

ToQuotedString()