《iOS 移動開發(fā)》讀書筆記_第八章UITableView&UICollectionView

創(chuàng)建表格的代理協(xié)議與數(shù)據(jù)源協(xié)議:


? ? ? ? class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {}


代碼創(chuàng)建表格對象:


? ? ? ? let tableView = UITableView(frame: CGRect)

? ? ? ? tableView.delegate = self

? ? ? ? tableView.dataSource = self

? ? ? ? self.view.addSubview(tableView)

? ? ? ? ? ? //viewDidLoad方法中


獲得主屏的尺寸代碼:


? ? ? ? let screenRect = UIScreen.main.bounds


表格對象行數(shù)的方法:


? ? ? ? func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

? ? ? ? ? ? return Int

? ? ? ? }


表格初始化與Cell復(fù)用的方法:


? ? ? ? func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

? ? ? ? ? ? let identifier = ""

? ? ? ? ? ? var cell = tableView.dequeueReusableCell(withIdentifier: identifier)

? ? ? ? ? ? if(cell == nil){

? ? ? ? ? ? ? ? cell = UITableViewCell(style: UITableViewCellStyle.subtitle, reuseIdentifier: identifier)

? ? ? ? ? ? }

? ? ? ? ? ? return cell!

? ? ? ? }


UITableViewDatasource的主要代理方法_初始化與復(fù)用方法tableView(_:cellForRowAt:) //(必須)

UITableViewDatasource的主要代理方法_設(shè)置Cell行數(shù)的方法: tableView(_:numberOfRowsInSection:) (必須)

UITableViewDatasource的主要代理方法_設(shè)置Section的數(shù)量: numberOfSections(in:)?

UITableViewDatasource的主要代理方法_設(shè)置Section標(biāo)題文字的方法: tableView(_:titleForHeaderInSecton:)?

UITableViewDatasource的主要代理方法_表格編輯模式方法: tableView(_:canEditRowAt:)?

UITableViewDatasource的主要代理方法_完成插入或刪除事件后調(diào)用的方法: tableView(_:commit:forRowAt:)?

UITableViewDatasource的主要代理方法_設(shè)置Cell可移動的方法: tableView(_:canMoveRowAt:)?

UITableViewDatasource的主要代理方法_Cell移動調(diào)用的方法: tableView(_:moveRowAt:to:)?

Cell的預(yù)制Style_image-label:UITableViewCellStyle.default?

Cell的預(yù)制Style_image-label-label:UITableViewCellStyle.value1

Cell的預(yù)制Style_label-label:UITableViewCellStyle.value2

Cell的預(yù)制Style_image-label/small_label:UITableViewCellStyle.subtitle?

自定義Cell第一步: 新建一個swift文件(例如tableViewCellDiy.swift)

UITableviewCell.swift所屬的類: class CustomizeUITableViewCell: UITableViewCell {}

自定義Cell初始化方法:


? ? ? ? override init(style: UITableViewCellStyle, reuseIdentifier: String?) {}

? ? ? ? ?required init?(coder aDecoder: NSCoder) {}


創(chuàng)建Cell的image:


? ? ? ? var thumbnail: UIImageView!

? ? ? ? override init(style: UITableViewCellStyle, reuseIdentifier: String?) {

? ? ? ? ? ? super.init(style: style, reuseIdentifier: reuseIdentifier)

? ? ? ? }


創(chuàng)建Cell的label:


? ? ? ? var title: UILabel!

? ? ? ? override init(style: UITableViewCellStyle, reuseIdentifier: String?) {

? ? ? ? ? ? super.init(style: style, reuseIdentifier: reuseIdentifier)

? ? ? ? ? ? self.title = UILabel(frame: CGRect(x: Int, y: Int, width: Int, height: Int))

? ? ? ? ? ? self.title.text = ""

? ? ? ? ? ? self.addSubview(self.title)

? ? ? ? ?}


創(chuàng)建Cell的button:


? ? ? ? var detail: UIButton!

? ? ? ? override init(style: UITableViewCellStyle, reuseIdentifier: String?) {

? ? ? ? ? ? super.init(style: style, reuseIdentifier: reuseIdentifier)

? ? ? ? ? ? self.detail = UIButton(frame: CGRect(x: Int, y: Int, width: Int, height: Int))

? ? ? ? ? ? self.detail.setTitle("", for: UIControlState())

? ? ? ? ? ? self.addSubview(self.detail)

? ? ? ? }


自定義Cell文件(tableViewCellDiy.swift)與表格文件相關(guān)聯(lián):


? ? ? ? //在表格視圖swift文件中宝当,添加cellForRowAt方法

? ? ? ? func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

? ? ? ? ? ? let identifier = "reusedCell"

? ? ? ? ? ? var cell: tableViewCellDiy? = tableView.dequeueReusableCell(withIdentifier: identifier)as? tableViewCellDiy

? ? ? ? ? ? if cell == nil{

? ? ? ? ? ? ? ? cell = tableViewCellDiy(style: UITableViewCellStyle.default, reuseIdentifier: identifier)

? ? ? ? ? ? }

? ? ? ? ? ? return cell!

? ? ? ? }


表格Cell高度的方法(高度為80):


? ? ? ? func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {

? ? ? ? ? ? return 80

? ? ? ? }


UITableViewDelegate主要的代理方法 _設(shè)置Cell高度:tableView(_:heightForRowAt:)?

UITableViewDelegate主要的代理方法 _Cell將被顯示調(diào)用的方法:tableView(_:willDisplay:forRowAt:)?

UITableViewDelegate主要的代理方法 _Cell被點(diǎn)擊調(diào)用的方法:tableView(_:didSelectRowAt:)?

UITableViewDelegate主要的代理方法 _已被選中的Cell被點(diǎn)擊調(diào)用的方法:tableView(_:didDeselectRowAt:)?

UITableViewDelegate主要的代理方法 _設(shè)置section的頭部:tableView(_:viewForHeaderInSection:)?

UITableViewDelegate主要的代理方法 _設(shè)置section的尾部:tableView(_:viewForFooterInSection:)?

表格的section和索引:書第198頁

響應(yīng)Cell點(diǎn)擊事件的方法: func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}

被點(diǎn)擊Cell附件的勾選圖標(biāo)代碼:


? ? ? ? let cell = tableView.cellForRow(at: indexPath)

? ? ? ? if cell?.accessoryType == UITableViewCellAccessoryType.none {

? ? ? ? ? ? cell?.accessoryType = UITableViewCellAccessoryType.checkmark

? ? ? ? }else{

? ? ? ? ? ? cell?.accessoryType = UITableViewCellAccessoryType.none

? ? ? ? }

? ? ? ? //tableView(didSelectRowAt)方法中


Cell附件(UITableViewCellAccessoryType)類型_無: UITableViewCellAccessoryType.none?

Cell附件(UITableViewCellAccessoryType)類型_?:UITableViewCellAccessoryType.detailButton?

Cell附件(UITableViewCellAccessoryType)類型_?>:UITableViewCellAccessoryType.detailDisclosureButton?

Cell附件(UITableViewCellAccessoryType)類型_>:UITableViewCellAccessoryType.disclosureIndicator?

Cell附件(UITableViewCellAccessoryType)類型_??:UITableViewCellAccessoryType.checkmark?

表格的編輯模式:


? ? ? ? tableView.setEditing(editing: Bool, animated: Bool)

? ? ? ? //editing編輯模式(默認(rèn)false)黎比,animated動畫

? ? ? ? //viewDidLoad方法中


Cell編輯屬性的方法(屬性設(shè)置為刪除):


? ? ? ? func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {

? ? ? ? return UITableViewCellEditingStyle.delete

? ? ? ? }


3.響應(yīng)Cell刪除事件的方法與代碼:


? ? ? ? func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {

? ? ? ? ? ? if editingStyle == UITableViewCellEditingStyle.delete {

? ? ? ? ? ? items.remove(at: indexPath.row)

? ? ? ? ? ? let indePaths = [indexPath]

? ? ? ? ? ? ?tableView.deleteRows(at: indePaths, with: UITableViewRowAnimation.automatic)

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? //items是數(shù)據(jù)源變量



數(shù)組的長度: Array.count

UITableViewCell編輯類型_默認(rèn)模式:UITableViewCellEditingStyle.none?

UITableViewCell編輯類型_刪除模式:UITableViewCellEditingStyle.delete?

UITableViewCell編輯類型_插入模式:UITableViewCellEditingStyle.insert?

表格插入Cell代碼:


? ? ? ? func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {

? ? ? ? ? ? return UITableViewCellEditingStyle.insert

? ? ? ? }

? ? ? ? func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {

? ? ? ? ? ? if editingStyle == UITableViewCellEditingStyle.insert {

? ? ? ? ? ? items.insert("", at: indexPath.row)

? ? ? ? ? ? let indePaths = [indexPath]

? ? ? ? ? ? tableView.insertRows(at: indePaths, with: UITableViewRowAnimation.right)

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? //items是數(shù)據(jù)源變量


表格移動Cell代碼:


? ? ? ? ?func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {

? ? ? ? ? ? return true

? ? ? ? }

? ? ? ? func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {

? ? ? ? ? ? let fromRow = sourceIndexPath.row

? ? ? ? ? ? let toRow = destinationIndexPath.row

? ? ? ? ? ? let obj = items[fromRow]

? ? ? ? ? ? items.remove(at: fromRow)

? ? ? ? ? ? items.insert(obj, at: toRow)

? ? ? ? }

? ? ? ? //items是數(shù)據(jù)源變量


表格之間的嵌套:書第213頁

213

表格Cell圖標(biāo)和高亮圖標(biāo)代碼:


? ? ? ? cell?.imageView?.image = UIImage(named: “”)

? ? ? ? cell?.imageView?.highlightedImage = UIImage(named: “”)

? ? ? ? //tableView(cellForRowAt)方法中


Cell標(biāo)題文字:cell?.textLabel?.text = "" ?//tableView(cellForRowAt)方法中

Cell細(xì)節(jié)標(biāo)題文字: cell?.detailTextLabel?.text = "" ?//tableView(cellForRowAt)方法中

Cell背景顏色為藍(lán)色: cell?.backgroundColor = UIColor.blue ?//tableView(cellForRowAt)方法中

滑動到指定Cell:


? ? ? ? let indexPath = IndexPath(row: Int, section: Int)

? ? ? ? tableView.scrollToRow(at: indexPath, at: UITableViewScrollPosition.top, animated: true)

? ? ? ? //viewDidLoad方法中


獲取當(dāng)前Cell在section的行數(shù):let rowNum = indexPath.row ?//tableView(cellForRowAt)方法中

Cell的accessory按鈕點(diǎn)擊事件調(diào)用的方法: func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath) {}

UICollectionView實(shí)例:書第221-225

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末凡怎,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子俏脊,更是在濱河造成了極大的恐慌,老刑警劉巖肤晓,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件爷贫,死亡現(xiàn)場離奇詭異,居然都是意外死亡补憾,警方通過查閱死者的電腦和手機(jī)漫萄,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來盈匾,“玉大人腾务,你說我怎么就攤上這事∠鞫” “怎么了岩瘦?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長窿撬。 經(jīng)常有香客問我启昧,道長,這世上最難降的妖魔是什么劈伴? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任密末,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘严里。我一直安慰自己新啼,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布田炭。 她就那樣靜靜地躺著师抄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪教硫。 梳的紋絲不亂的頭發(fā)上叨吮,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天,我揣著相機(jī)與錄音瞬矩,去河邊找鬼茶鉴。 笑死,一個胖子當(dāng)著我的面吹牛景用,可吹牛的內(nèi)容都是我干的涵叮。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼伞插,長吁一口氣:“原來是場噩夢啊……” “哼割粮!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起媚污,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤舀瓢,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后耗美,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體京髓,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年商架,在試婚紗的時候發(fā)現(xiàn)自己被綠了堰怨。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡蛇摸,死狀恐怖备图,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情赶袄,我是刑警寧澤诬烹,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站弃鸦,受9級特大地震影響绞吁,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜唬格,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一家破、第九天 我趴在偏房一處隱蔽的房頂上張望颜说。 院中可真熱鬧,春花似錦汰聋、人聲如沸门粪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽玄妈。三九已至,卻和暖如春髓梅,著一層夾襖步出監(jiān)牢的瞬間拟蜻,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工枯饿, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留酝锅,地道東北人。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓奢方,卻偏偏與公主長得像搔扁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子蟋字,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容