如何为使用func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let clientCell = tableView.dequeueReusableCell(withIdentifier: "clientCell", for: indexPath)
clientCell.selectionStyle = .none
if selectedIdxPath == indexPath.row {
clientCell.accessoryType = UITableViewCellAccessoryType.checkmark
} else {
clientCell.accessoryType = UITableViewCellAccessoryType.none
}
return clientCell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
selectedIdxPath = indexPath.row
tableView.reloadData()
}
注释参数的方法创建单元测试(即@StringRes
?。当我尝试为测试添加任意int时,它会抛出编译器错误。