How to left align UISearchBar placeholder text(如何左对齐 UISearchBar 占位符文本)
问题描述
我需要制作一个像这样的自定义搜索栏.我遇到的问题是左对齐占位符文本,以及将搜索图标放在右侧.我有一个我尝试在 UIImageView 中使用的搜索图标的 png,并将该
的 UIImageView
设置为 rightView
>UISearchBarUITextField
.这个解决方案没有奏效,我没有主意了.有人有解决办法吗?
I need to make a custom search bar like this. The problem I am having is left aligning the placeholder text, as well as placing the search icon in the right. I have a png of the search icon that I have tried to use in an UIImageView
, and set that UIImageView
as the rightView
of the UISearchBar
's UITextField
. This solution has not worked, and I ran out of ideas. Does anyone have a solution?
推荐答案
如果您需要进行此类自定义,请不要使用 UISearchBar
.您必须使用 UITextField
和 UIImageView
自己制作,并响应委托调用.
Don't use a UISearchBar
if you need to do these kinds of customizations. You'll have to make your own using a UITextField
and a UIImageView
, and responding to the delegate calls.
这篇关于如何左对齐 UISearchBar 占位符文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何左对齐 UISearchBar 占位符文本


基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01