如何更改 UISearchBar 中文本字段的位置
How do i change the position of the textfield inside UISearchBar
我的 UISearchBar 文本字段太靠近 glassIcon。我需要它们至少相隔 10 个点。
P.S - 这是在 iOS 11.2
查看 Apple 的 UISearchBar Class Reference 并查看 searchTextPositionAdjustment。
要在图标和文本之间创建 10 像素的间隙,您可以执行以下操作:
searchBar.searchTextPositionAdjustment = UIOffset(horizontal: 10, vertical: 0)
希望对您有所帮助!
我的 UISearchBar 文本字段太靠近 glassIcon。我需要它们至少相隔 10 个点。
P.S - 这是在 iOS 11.2
查看 Apple 的 UISearchBar Class Reference 并查看 searchTextPositionAdjustment。
要在图标和文本之间创建 10 像素的间隙,您可以执行以下操作:
searchBar.searchTextPositionAdjustment = UIOffset(horizontal: 10, vertical: 0)
希望对您有所帮助!