소스 검색

use searchController.obscuresBackgroundDuringPresentation instead of deprecated searchController.dimsBackgroundDuringPresentation (as elsewhere in the app)

B. Petersen 1 년 전
부모
커밋
d310c48951
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      DcShare/Controller/ChatListController.swift

+ 1 - 1
DcShare/Controller/ChatListController.swift

@@ -19,7 +19,7 @@ class ChatListController: UITableViewController {
         searchController.searchResultsUpdater = viewModel
         searchController.obscuresBackgroundDuringPresentation = false
         searchController.searchBar.placeholder = String.localized("search")
-        searchController.dimsBackgroundDuringPresentation = false
+        searchController.obscuresBackgroundDuringPresentation = true
         searchController.hidesNavigationBarDuringPresentation = true
         searchController.searchBar.delegate = self
         return searchController