您的位置:首页 > 移动开发 > Swift

swift中tableview的使用和注意事项

2014-08-26 22:09 513 查看
今天使用swift写了个简单的tableView,语法和用法上跟oc没多大的区别。但是还是有一些细节的地方需要注意一下的。

先上代码

import UIKit

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {

var _tableView:UITableView?
override func viewDidLoad() {
super.viewDidLoad()

_tableView=UITableView(frame: self.view.bounds, style:.Plain)
self.view.addSubview(_tableView)
_tableView!.delegate=self
_tableView!.dataSource=self

}

func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
{
return 20;
}
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
var cell=tableView.dequeueReusableCellWithIdentifier("CellId") as? UITableViewCell
if (cell==nil){
cell=UITableViewCell(style: .Default, reuseIdentifier: "CellId")
}
cell!.textLabel.text="\(indexPath.row)"
return cell
}

}


注意以下几点:

1,数据源方法,
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!

func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
这两个方法是必须实现的,如果你不实现这两个方法,编译器就会报错。而不再是跟OC的时候一样,运行的时候才会报错
所以,当你写完_tableView!.dataSource=self的时候,会出现报错,然后你在头部加班UITableViewDataSource,依然报错。当你实现了上面两个方法后,错误就会消失


2,cell的重用
 var cell=tableView.dequeueReusableCellWithIdentifier("CellId") as? UITableViewCell
这里需要注意的一点是,后面强转成UITableViewCell的时候,在as后面带上个问号,因为在缓存池里不一定能找到可以重用的cell,不带问号就会引起cell为nil的错误


初学经验,如有不妥,望大神指点
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: