由于这段时间比较忙,所以写博文的时间也挤了很长时间才完成,希望大家能够原谅,后面我也会陆续的更新,直到控件都讲完,好了废话少说,现在让我们来看今天的内容.
1.UItablevIEw常用属性UItableVIEw 的样式
enum UItableVIEwStyle : Int { case Plain // 平铺样式 case Grouped // 分组样式}
UItableVIEw 添加或者删除 Cell 时的动画
enum UItableVIEwRowAnimation : Int { case Fade // 淡入淡出 case Right // 从右添加 case left // 从左添加 case top // 从上添加 case Bottom // 从底部添加 case None // 没有动画 case MIDdle // 从中间添加 case automatic // 随机添加}
UItableVIEw 滚动时指定的位置
enum UItableVIEwScrollposition : Int { case None // 不指定 case top // 指定上面 case MIDdle // 指定中间 case Bottom // 指定底部}
UItableVIEw 分割线的样式
enum UItableVIEwCellSeparatorStyle : Int { case None // 没有分割线 case Singleline // 单行分割线 case SinglelineEtched // 多行分割线融合}
UItableVIEw 属性
// 1.设置 UItableVIEw 的位置以及Styleinit(frame: CGRect,style: UItableVIEwStyle) var style: UItableVIEwStyle { get }// 2.设置数据源对象uNowned(unsafe) var dataSource: UItableVIEwDataSource?// 3.设置代理对象uNowned(unsafe) var delegate: UItableVIEwDelegate?// 4.设置 Cell 的行高var rowHeight: CGfloat// 5.设置 Cell 的标题高度var sectionheaderHeight: CGfloat// 6.设置 Cell 的页尾高度var sectionFooterHeight: CGfloat// 7.设置估计的 Cell 的行高var estimatedRowHeight: CGfloat// 8.设置估计的 Cell 的标题行高var estimatedSectionheaderHeight: CGfloat// 9.设置估计的 Cell 的页尾行高var estimatedSectionFooterHeight: CGfloat// 10.设置 Cell 与 Cell 之间的分割线位置var separatorInset: UIEdgeInsets// 11.设置 UItableVIEw 的背景 VIEw 对象var backgroundVIEw: UIVIEw?2.常用数据源方法
要使用数据源方法(DataSoucre方法),首先我们需要遵守 UItableVIEw 的数据源方法(UItableVIEwDataSoucre)协议,这个我们在例子中会讲到
常用数据源方法
// 1.该方法是用来设置 tableVIEw 有多少行 Cell func tableVIEw(tableVIEw: UItableVIEw,numberOfRowsInSection section: Int) -> Int// 2.该方法是用来设置 tableVIEw 每一行 Cell 的详细内容 func tableVIEw(tableVIEw: UItableVIEw,cellForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCell// 3.该方法是用来设置 tableVIEw 有多少组 Cell optional func numberOfSectionsIntableVIEw(tableVIEw: UItableVIEw) -> Int// 4.该方法是用来设置每一组 Cell 的标题内容 optional func tableVIEw(tableVIEw: UItableVIEw,TitleForheaderInSection section: Int) -> String?// 5.该方法是用来设置每一组 Cell 的页尾内容 optional func tableVIEw(tableVIEw: UItableVIEw,TitleForFooterInSection section: Int) -> String?// 6.该方法使用来设置 tableVIEw 左滑快捷 optional func tableVIEw(tableVIEw: UItableVIEw,commitEditingStyle editingStyle: UItableVIEwCellEditingStyle,forRowAtIndexPath indexPath: NSIndexPath)// 7.该方法是用来设置 tableVIEw 是否可以拖拽到其他行数,只要写了该方法,默认打开 optional func tableVIEw(tableVIEw: UItableVIEw,moveRowAtIndexPath sourceIndexPath: NSIndexPath,toIndexPath destinationIndexPath: NSIndexPath)
PS: 以上的1,2方法是必须得实现的,否则 UItableVIEw 不会有任何数据,并且会报错.
常用代理方法
// 1.该方法是用来设置每一行 Cell 的高度 optional func tableVIEw(tableVIEw: UItableVIEw,heightForRowAtIndexPath indexPath: NSIndexPath) -> CGfloat// 2.该方法是用来设置 Cell 标题内容的高度(如果该方法使用了,那么在自定义 tableVIEw 的sectionheaderHeight属性就会被覆盖) optional func tableVIEw(tableVIEw: UItableVIEw,heightForheaderInSection section: Int) -> CGfloat// 3.该方法是用来设置 Cell 页尾内容的高度(如果该方法使用了,那么在自定义 tableVIEw 的sectionFooterHeight属性就会被覆盖) optional func tableVIEw(tableVIEw: UItableVIEw,heightForFooterInSection section: Int) -> CGfloat// 4.该方法是用来设置 tableVIEw 左滑快捷按钮的内容以及详细 *** 作 optional func tableVIEw(tableVIEw: UItableVIEw,TitleForDeleteConfirmationbuttonForRowAtIndexPath indexPath: NSIndexPath) -> String!// 5.该方法是用来设置 tableVIEw 每一行 Cell 的编辑模式,如果不设置,默认都是删除 optional func tableVIEw(tableVIEw: UItableVIEw,editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCellEditingStyle
常用的代理方法和数据源方法大概就这么多,如果有兴趣去研究其他方法的同学可以自行去研究,这样子会让自己的记忆更加深入.
3.代码演示遵守代理协议和数据源协议
class VIEwController: UIVIEwController,UItableVIEwDelegate,UItableVIEwDataSource {}
自定义 UItableVIEw
func mytableVIEw() { // 1.设置 tableVIEw 的 frame 和 style var tableVIEw: UItableVIEw = UItableVIEw(frame: self.vIEw.frame,style: UItableVIEwStyle.Plain) // 2.设置 tableVIEw 的背景色 tableVIEw.backgroundcolor = UIcolor(red: 0.0,green: 127.0,blue: 127.0,Alpha: 1.0) // 3.设置 tableVIEw 的代理对象 tableVIEw.delegate = self // 4.设置 tableVIEw 的数据源对象 tableVIEw.dataSource = self // 5.设置 tableVIEw 每一行 Cell 的高度 tableVIEw.rowHeight = 44 // 6.设置 tableVIEw 每一行 Cell 页头的行高 tableVIEw.sectionheaderHeight = 50 // 7.设置 tableVIEw 每一行 Cell 页尾的行高 tableVIEw.sectionFooterHeight = 50 // 8.设置 tableVIEw 每一行 Cell 的估计行高 tableVIEw.estimatedRowHeight = 100 // 9.设置 tableVIEw 每一行 Cell 的页头估计行高 tableVIEw.estimatedSectionheaderHeight = 50 // 10.设置 tableVIEw 每一行 Cell 的页尾估计行高 tableVIEw.estimatedSectionFooterHeight = 50 // 11.设置 tableVIEw 每一行 Cell 之间分割线位置(分别是: 上,左,下,右) tableVIEw.separatorInset = UIEdgeInsetsMake(0,50,0,50) // 12.设置 tableVIEw 每一行 Cell 之间分割线的颜色 tableVIEw.separatorcolor = UIcolor.redcolor() // 13.设置 tableVIEw 每一行 Cell 之间的分割效果(暂无方法,目前只是用来实例化) tableVIEw.separatorEffect = UIVisualEffect() // 14.设置 tableVIEw 每一行 Cell 之间的分割线样式(默认是 Singleline 样式) tableVIEw.separatorStyle = UItableVIEwCellSeparatorStyle.Singleline // 15.设置 tableVIEw 的背景 VIEw 对象 tableVIEw.backgroundVIEw = UIVIEw() // 16.设置 tableVIEw 的编辑模式是否开启,并且是否使用动画效果 tableVIEw.setEditing(true,animated: true) // 17.添加到 self.vIEw 上 self.vIEw.addSubvIEw(tableVIEw) }
实现代理方法和数据源方法
// 1.该方法是用来设置 tableVIEw 有多少组 Cell func numberOfSectionsIntableVIEw(tableVIEw: UItableVIEw) -> Int { return 2 } // 2.该方法是用来设置 tableVIEw 有多少行 Cell func tableVIEw(tableVIEw: UItableVIEw,numberOfRowsInSection section: Int) -> Int { return 2 } // 3.该方法是用来设置 tableVIEw 每一行 Cell 的详细内容 func tableVIEw(tableVIEw: UItableVIEw,cellForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCell { let cell = UItableVIEwCell() cell.backgroundcolor = UIcolor.bluecolor() return cell } // 4.该方法是用来设置 tableVIEw 每一行 Cell 的标题内容 func tableVIEw(tableVIEw: UItableVIEw,TitleForheaderInSection section: Int) -> String? { return "我是页头" } // 5.该方法是用来设置 tableVIEw 每一行 Cell 的页尾内容 func tableVIEw(tableVIEw: UItableVIEw,TitleForFooterInSection section: Int) -> String? { return "我是页尾" } // 6.该方法是用来设置 tableVIEw 每一行 Cell 的高度,一旦这里设置了,那么在自定义里的 rowHeight 属性就会被覆盖 func tableVIEw(tableVIEw: UItableVIEw,heightForRowAtIndexPath indexPath: NSIndexPath) -> CGfloat { return 100 } // 7.该方法是用来响应 tableVIEwCell 被点击的事件 func tableVIEw(tableVIEw: UItableVIEw,dIDSelectRowAtIndexPath indexPath: NSIndexPath) { println("我被点击了") } // 8.该方法是用来设置 tableVIEw 每一行 Cell 的编辑模式,默认都是删除 func tableVIEw(tableVIEw: UItableVIEw,editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCellEditingStyle { return UItableVIEwCellEditingStyle.Insert } // 9.该方法是用来设置 TabelvIEw 的左滑快捷按钮,默认打开 func tableVIEw(tableVIEw: UItableVIEw,forRowAtIndexPath indexPath: NSIndexPath) { } // 10.该方法是用来设置 TabelVIEw 左滑快捷按钮的详细内容以及 *** 作 func tableVIEw(tableVIEw: UItableVIEw,TitleForDeleteConfirmationbuttonForRowAtIndexPath indexPath: NSIndexPath) -> String! { return "删除" } // 11.该方法是用来设置 tableVIEw 是否可以拖拽到其他行数,toIndexPath destinationIndexPath: NSIndexPath) { }4.最终的效果
PS: UItableVIEw 是继承与 UIScrollVIEw 的,所以 UIScrollVIEw 里的所有方法/属性 UItableVIEw 都是可以使用的.
好了,这次我们就讲到这里,下次我们继续~~
总结以上是内存溢出为你收集整理的UIKit框架-高级控件Swift版本: 2.UITableView方法/属性详解全部内容,希望文章能够帮你解决UIKit框架-高级控件Swift版本: 2.UITableView方法/属性详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)