1.前言
自学Swift已经有一段时间了,暂时还没有看Swift3.0的相关东西,只是水平还停留在Swift2.x阶段,众所周知Swift是苹果力推的语言,总会有一天会取代OC成为主流的苹果开发语言,干一行就要爱一行,饭碗还是要紧紧抱住的啊,初步接触Swift,对于我这种原来没有Java,js等开发经验的我,语法确实很难适应,目前还在慢慢消化中,不积跬步无以至千里,今天搞一搞iOS开发中使用率最高的一个UI控件UITableView的简单使用,入门而已(大神无视).
其中还会穿插一些懒加载的知识,以及override,extension等关键词的用法,以及Swift中代码注解的相关写法
2.创建tableView,实现其数据源以及代理方法
//swift中遵守协议直接在后面通过逗号分隔即可
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
override func loadView() {
let tv = UITableView()
tv.frame = UIScreen.mainScreen().bounds
tv.dataSource = self
tv.delegate = self
view = tv
}
//MARK: - 懒加载数据
lazy var dataList:[String] = {
return ["iOScoderZZJ","iOS小菜鸡","终成雄鹰","旅途很远","还需修行"]
}()
//其他代理方法不一一举例,换汤不换药,直接搞起就行
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return dataList.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("cell")
if cell == nil{
cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "cell")
}
cell?.textLabel?.text = dataList[indexPath.row]
return cell!
}
}
我来看看效果图
先处理一些知识点
2.1 Swift中的懒加载
Swift中的懒加载无处不在,与OC不同的是,OC是一般来说是重写get方法来懒加载,但是Swift中有很多种写法,常用写法以及注意事项见面代码
code
//格式:定义变量时前面使用lazy来修饰变量,后面通过等号复制一个闭包
//注意点:1.必须使用var 2.闭包后面必须跟上()
lazy var dataList:[String] = {
()->[String]
in
return ["aaa","bbb","ccc"]
}()
//如果闭包是用于懒加载,那么in之前的代码都可以删除,包括in
/*********************开发用这种**********************/
lazy var dataList2:[String] = {
return ["111","222","333"]
}()
let dmeoFunc = {
()->[String]
in
return ["ddd","eee","fff"]
}
#####2.2 Swift中给一段代码起个名字吧
在OC中,相信大家都使用过,```#pragma mark - 代码的作用简要``` 对于一段代码有个主要的概括,但是在Swift中,你敲破脑袋也敲不出来这玩意,因为它变了```//MARK: ``` 双斜线加上大写的MARK:就可以,这样你就会在这个类中预览到相关的提示,如下图
![661F827A-5980-4496-817D-2F1B4C1F2453.png](http://upload-images.jianshu.io/upload_images/1342044-c66aa14f6e1e982c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
#####2.3 override关键字
在Swift中,重写父类的方法,要在方法前面加上override关键字,否则编译器会报错!!Swift是一门优雅的语言^_^,所以大家不必死记硬背,如果重写时不加,报错后让编译器自己修改就OK了
##3.上面的代码我们换一种写法
class ViewController: UIViewController {
override func loadView() {
let tv = UITableView()
tv.frame = UIScreen.mainScreen().bounds
tv.dataSource = self
tv.delegate = self
view = tv
}
//MARK: - 懒加载数据
lazy var dataList:[String] = {
return ["iOScoderZZJ","iOS小菜鸡","终成雄鹰","旅途很远","还需修行"]
}()
}
extension ViewController : UITableViewDelegate,UITableViewDataSource
{
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return dataList.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("cell")
if cell == nil{
cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "cell")
}
cell?.textLabel?.text = dataList[indexPath.row]
return cell!
}
}
区别:我们将上面代码中的代理方法写到了下面extension的扩展中,从而使这部分代码抽离了出来,苹果官方建议,可以将数据源代理方法单独写道一个扩展中,以便于提高代码的可读性,extension可以理解为OC中的category,不禁感叹Swift真的是一门优雅的语言
##4.总结
来波总结吧,Swift中取消了 -号开头代表对象方法,+号代表类方法的这种表现形式,所有的方法都是以func关键字开头,虽然有点淡淡的不适应,但是根据老程序员和其他岗位同事说,看Swift的代码要比OC舒服,还在慢慢适应中
我是一个iOS开发的小菜鸡,终有一天变成雄鹰
旅途很远,还需修行