Disable flash background on UISearchController on tvOS

Since we use a custom background image throughout our tvOS application, I need a UISearchController so as not to blur the background. Apparently, the flag is dimsBackgroundDuringPresentationnot available UISearchControllerunder tvOS. Is there any other way to get rid of it?

+4
source share
1 answer

Set the flag obscuresBackgroundDuringPresentation.

UISearchController *searchController;
searchController.obscuresBackgroundDuringPresentation = NO;
+7
source

Source: https://habr.com/ru/post/1611311/


All Articles