选择学习IOS的UI控件,原因:
1.用的是Mac mini(屌丝女~将来有钱了入手Mac Pro),正好可以使用xcode。
2.xcode中有storyboard,这可比Android的开发界面友善多了,所见即所得,控件拖拽即可(有点像Axure),适合没有编程基础的我。
3.storyboard中提供了较多的控件,能满足日常的使用。
4.swift语言出来之后,学习成本低了不好。
OK,言归正传,开始学习记录。
table view知识要点:
table view,简单来说,就是表格~iPhone里的设置界面,是一个典型的table view。
1.
问题:
控件库中的table view 和 table view controller 有什么区别?
理解:
一开始我确实分不清这两个的区别,后来捣鼓了一番,发现table view controller是一个整个界面,使用table view controller,意味着,这个页面的所有内容都要在table view(表格)中实现。而table view可以理解为一个控件,可以和其他的控件放在同一个某某controller中。
控件库中带有controller结尾的控件,拖到storyboard中就是一个页面,两个controller不能放在一个页面下。不带controller的控件,是可以在一个页面里罗列使用的。
2.
问题:
data source与delegate的区别?
理解:
UITableViewDataSource(data source),用于提供数据给table view.也就是表格有哪些有什么数据~
UITableViewDelegate(delegate), 当事件发生时,或者当table view需要更多的属性时,table view向delegate请求。
3.
笔记:
(1)UITableViewDataSource
如果指明遵循这个协议,以下两个函数是必须要实现的:
1)numberOfRowsInSection
//每个section需要加载多少行
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
}
2)cellForRowAtIndexPath
//返回UITableViewCell
UITableViewCell是section里的行(某一行或者所有行),行中的内容变化,需要在这个函数下实现
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
}
另外还有3个可选的函数,可以不实现可以实现
1)numberOfSectionsInTableView
//这个table view中有多少个section
iphone设置界面中,有多个section,第一个section就是 通用 。如果没有实现这个函数,那么就默认这个table view中只有一个section。其实好多APP中的设置界面只有一个section的。
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
}
2)titleForHeaderInSection
//section的头标题名称
有点像页眉。section也是有个头部的,使用这个效果的APP不多。这个头部的字体是固定的风格,不能修改,如果想自定义字体,不用使用这个函数。用其他方式代替(例如使用UILable)
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
}
3)titleForFooterInSection
//section的尾部标题名称
有点像页脚。同上。
optional func tableView(tableView: UITableView, titleForFooterInSection section: Int) -> String?
(2)UITableViewDelegate
函数较多,大约有这么几类:
1)显示 tableview的内容的过程中: 显示前、显示中、显示后
2)页眉页脚(header & footer)以及每个单元格(行)的高度
3)根据内容快速估算页眉页脚(header & footer)以及每个单元格(行)的高度,使用此方法有时候会和上方的2)有冲突
4)页眉页脚(header & footer)的标题内容
5)类似大于号>,APP的设置界面常常出现
6)单元格被选中或者不再被选中
7)选中是否高亮
8)编辑单元格:删除+插入 delete+insert
9)移动单元格
10)复制粘贴
11)Indentation(这个是干嘛的?等级吗?)