在tvOS上禁用UISearchController上的blury背景

mar*_*_st 4 uisearchbar uisearchcontroller tvos

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

小智 7

设置obscuresBackgroundDuringPresentation标志.

UISearchController *searchController;
searchController.obscuresBackgroundDuringPresentation = NO;
Run Code Online (Sandbox Code Playgroud)