func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
0
}
为什么在返回内置数据类型时即使没有添加return关键字,编译器也不会抛出错误?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
UITableViewCell()
}
而在非内置类型的情况下,它会抛出错误:在预期返回的函数中缺少返回