ios – 如何更改UISearchBar占位符和图像色调?

ios – 如何更改UISearchBar占位符和图像色调?,第1张

概述我一直在尝试搜索结果几个小时,但我不能得到这个想法.也许是不可能的.我试图改变UISearchBar的占位符文字和放大镜的色调颜色.如果重要的话,我只针对iOS 8.0.这是我的代码,现在看起来如何 let searchBar = UISearchBar()searchBar.placeholder = "Search"searchBar.searchBarStyle = UISearchBa 我一直在尝试搜索结果几个小时,但我不能得到这个想法.也许是不可能的.我试图改变UISearchbar的占位符文字和放大镜的色调颜色.如果重要的话,我只针对iOS 8.0.这是我的代码,现在看起来如何
let searchbar = UISearchbar()searchbar.placeholder = "Search"searchbar.searchbarStyle = UISearchbarStyle.Minimalsearchbar.tintcolor = UIcolor.whitecolor()

我希望搜索和放大镜是白色的,或者是深绿色.

解决方法 如果您有可以使用的自定义图像,则可以使用类似于以下内容的方式设置图像并更改占位符文本颜色:
[searchbar setimage:[UIImage imagenamed:@"SearchWhite"] forSearchbarIcon:UISearchbarIconSearch state:UIControlStatenormal];UITextFIEld *searchTextFIEld = [searchbar valueForKey:@"_searchFIEld"];    if ([searchTextFIEld respondsToSelector:@selector(setAttributedplaceholder:)]) {    UIcolor *color = [UIcolor purplecolor];    [searchTextFIEld setAttributedplaceholder:[[NSAttributedString alloc] initWithString:@"Search" attributes:@{NSForegroundcolorAttributename: color}]];}

在这个例子中,我使用了purplecolor,而您可以使用(UIcolor *)colorWithRed(CGfloat)红色绿色(CGfloat)绿色蓝色(CGfloat)蓝色Alpha:(CGfloat)Alpha方法来创建自定义深绿色.

编辑:我只是意识到你正在迅速地写这篇文章.快速键入这个,所以我没有把答案放在Obj-C中.

searchbar.setimage(UIImage(named: "SearchWhite"),forSearchbarIcon: UISearchbarIcon.Search,state: UIControlState.normal);    var searchTextFIEld: UITextFIEld? = searchbar.valueForKey("searchFIEld") as? UITextFIEld    if searchTextFIEld!.respondsToSelector(Selector("attributedplaceholder")) {        var color = UIcolor.purplecolor()        let attributeDict = [NSForegroundcolorAttributename: UIcolor.purplecolor()]        searchTextFIEld!.attributedplaceholder = NSAttributedString(string: "search",attributes: attributeDict)    }
总结

以上是内存溢出为你收集整理的ios – 如何更改UISearchBar占位符和图像色调?全部内容,希望文章能够帮你解决ios – 如何更改UISearchBar占位符和图像色调?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1097541.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存