開發(fā)工程中會常用到以下代碼
// 設(shè)置UISearchController的顯示屬性,以下3個屬性默認為YES
//搜索時,背景變暗色
_searchController.dimsBackgroundDuringPresentation = NO;
//搜索時弧岳,背景變模糊
_searchController.obscuresBackgroundDuringPresentation = NO;
//隱藏導(dǎo)航欄
_searchController.hidesNavigationBarDuringPresentation = NO;
使用前
使用后