[相关信息:Xcode7.2 ; Swift2.0]
先回顾一下效果图
接下来我们需要把第一页列表页做起来
添加完之后我们运行下APP会发现,列表还是空的?那是因为Table View没有绑定数据,而且数据也没有,当然显示出来的列表也会是空的。
好,那接下来我们要让列表显示出来
// MARK: - Table view data source
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 5
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tbView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
return cell
}
最后我们运行APP看下效果 (Command+R)
嗯,效果实现成功了👋👋👋