美文网首页
iOS-UISearchBar、UISearchControll

iOS-UISearchBar、UISearchControll

作者: Imkata | 来源:发表于2021-11-22 23:25 被阅读0次

UISearchBar、UISearchController、UIPageViewController在开发中使用的很少,因为其可定制性不强,有时候不能满足我们的UI需求,但是如果能满足我们的需求,使用系统的控件也会给我们节省时间,下面就总结一下。

一. UISearchBar

1. 属性

大体布局属性

//默认白色背景灰色框,可以设置黑色
barStyle = .default
delegate = self
text = ""
//设置上方的提示文字
prompt = "我是提示文字"
placeholder = "我是占位文字"

//右侧是否显示书签,和x按钮在同一个位置,同一时刻只能显示一个
showsBookmarkButton = true
//显示取消按钮,在搜索框右侧
showsCancelButton = true

2. 代理方法

相关文章

网友评论

      本文标题:iOS-UISearchBar、UISearchControll

      本文链接:https://www.haomeiwen.com/subject/mzsgmltx.html