国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

IOS改變UISearchBar中搜索框的高度

2019-10-21 18:56:22
字體:
供稿:網(wǎng)友
這篇文章主要介紹了IOS改變UISearchBar中搜索框的高度的相關(guān)資料,需要的朋友可以參考下
 

一、系統(tǒng)的searchBar
1、UISearchBar的中子控件及其布局
UIView(直接子控件) frame 等于 searchBar的bounds,view的子控件及其布局

  • UISearchBarBackground(間接子控件) frame 等于searchBar的bounds
  • UISearchBarTextField(間接子控件) frame.origin等于(8.0, 6.0),即不等于searchBar的bounds

2、改變searchBar的frame只會影響其中搜索框的寬度,不會影響其高度,原因如下:

  • 系統(tǒng)searchBar中的UISearchBarTextField的高度默認(rèn)固定為28
  • 左右邊距固定為8,上下邊距是父控件view的高度減去28除以2

二、改變UISearchBar的高度
1、方案
重寫UISearchBar的子類(IDSearchBar),重新布局UISearchBar子控件的布局
增加成員屬性contentInset,控制UISearchBarTextField距離父控件的邊距

  • 若用戶沒有設(shè)置contentInset,則計算出默認(rèn)的contentInset
  • 若用戶設(shè)置了contentInset,則根據(jù)最新的contentInset布局UISearchBarTextField

2、具體實(shí)現(xiàn)
重寫UISearchBar的子類

class IDSearchBar: UISearchBar {}

增加成員屬性contentInset(可選類型),控制UISearchBarTextField距離父控件的邊距,監(jiān)聽其值的改變,重新布局searchBar子控件的布局

var contentInset: UIEdgeInsets? {  didSet {    self.layoutSubviews()  }}

重寫layoutSubviews()布局searchBar的子控件

override func layoutSubviews() {  super.layoutSubviews()  // view是searchBar中的唯一的直接子控件  for view in self.subviews {    // UISearchBarBackground與UISearchBarTextField是searchBar的簡介子控件    for subview in view.subviews {      // 找到UISearchBarTextField      if subview.isKindOfClass(UITextField.classForCoder()) {        if let textFieldContentInset = contentInset { // 若contentInset被賦值          // 根據(jù)contentInset改變UISearchBarTextField的布局          subview.frame = CGRect(x: textFieldContentInset.left, y: textFieldContentInset.top, width: self.bounds.width - textFieldContentInset.left - textFieldContentInset.right, height: self.bounds.height - textFieldContentInset.top - textFieldContentInset.bottom)        } else { // 若contentSet未被賦值          // 設(shè)置UISearchBar中UISearchBarTextField的默認(rèn)邊距          let top: CGFloat = (self.bounds.height - 28.0) / 2.0          let bottom: CGFloat = top          let left: CGFloat = 8.0          let right: CGFloat = left          contentInset = UIEdgeInsets(top: top, left: left, bottom: bottom, right: right)        }      }    }  }}

三、IDSearchBar使用示例
1、未設(shè)置contentInset
設(shè)置searchBar的frame

searchBar.frame = CGRect(x: 80, y: 100, width: 200, height: 40)

效果如圖

IOS改變UISearchBar中搜索框的高度

2、設(shè)置contentInset
設(shè)置searchBar的frame

searchBar.frame = CGRect(x: 80, y: 100, width: 200, height: 40)

設(shè)置searchBar的contentInset

// 設(shè)置contentInsetsearchBar.contentInset = UIEdgeInsets(top: 0, left: 8, bottom: 0, right: 8)

效果如圖

IOS改變UISearchBar中搜索框的高度

四、IDSearchBar的設(shè)計原則
1、注意

  • UISearchBar默認(rèn)是有自己默認(rèn)的布局方式的
  • 設(shè)計IDSearchBar旨在改變searBar中搜索框的高度,但是可能會有改變寬的的需求

2、設(shè)計原則

  • 在沒有改變searchBar中搜索框的高度的需求時,需要使用UISearchBar的默認(rèn)布局
  • 若需要改變searchBar中搜索框的高度的需求時,需要按照需求來改變UISearchBar的布局
  • 為了增加可控性,在IDSearchBar中增加成員屬性contentInset來控制IDSearchBar的內(nèi)邊距

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助。



注:相關(guān)教程知識閱讀請移步到IOS開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 保靖县| 乌审旗| 固安县| 湟源县| 平凉市| 田林县| 宜黄县| 察哈| 蓬安县| 读书| 新龙县| 双峰县| 大关县| 雅江县| 水城县| 来凤县| 福建省| 原平市| 康马县| 旌德县| 乐山市| 龙岩市| 梧州市| 莎车县| 连平县| 安龙县| 买车| 苏尼特左旗| 本溪市| 濉溪县| 南康市| 祁东县| 清流县| 深州市| 寿光市| 长子县| 泉州市| 如东县| 沂水县| 柳河县| 温州市|