回答

0

甲UISearchDisplayController不能被添加到一個UIView,因爲它不從一個UIView繼承。您可以在Interface Builder中使用IBOutlet添加UISearchBar,然後以編程方式使用該UISearchBar創建UISearchDisplayController。

0

只需在代碼中完成(假設視圖控制器是VC):

[vc addSubview:mySearchDisplayController.searchBar]; 
// Note that searchBar is the view, and mySearchDisplayController only CONTROLS the searchBar etc.