在swift中使用tableView自动填充为委托方法的最佳方法?

时间:2014-06-05 12:53:54

标签: ios swift uitableview

在swift中编写tableView的委托和数据源方法的最佳方法是什么。

就像我想写numberOfSectionsInTableView一样,那我应该写完整的功能吗?或自动填充会起作用吗?

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

因为在ObjectiveC的情况下我只写-(NSInteger)number然后使用自动填充我能够得到整个方法。

2 个答案:

答案 0 :(得分:2)

使用代码段来实现此目的。

第1步

Select Code

第2步

Select Name

第3步

Use Code

第4步

enter image description here

答案 1 :(得分:1)

是自动完成功能无法在当前可用的Xcode6 Beta版本中使用。这也在Apple开发论坛上报道。看看:https://devforums.apple.com/message/971642

这可能会在接下来的几个测试版中得到解决。

希望有所帮助!