我正在尝试创建一个这样的搜索栏:
但是我注意到我可能不得不用我自己的图像替换搜索栏,因为当我设置时搜索栏的角落出错:
self.searchController.searchBar.layer.cornerRadius = 50 // I've tried other numbers besides this too with no luck self.searchController.searchBar.clipsToBounds = true
如果我这样设置:
self.searchController.searchBar.layer.cornerRadius = self.searchController.searchBar.bounds.height/2
搜索栏如下:
这仍然不像图像中那样精确.
解决方法
这里的问题是你在UISearchBar上设置了角半径,而不是它里面的UITextField.你可以做一些破解来获得UITextField,但这并不是真的值得推荐的.
正如您在问题中提到的,您需要使用自定义图像和此处显示的方法:https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISearchBar_Class/#//apple_ref/doc/uid/TP40007529-CH3-SW40