我已經在我的項目得到了這個斯威夫特代碼之後,除了detaiTextLabel不showing.What是錯我的代碼detailTextLabel沒有顯示甚至設置風格的副標題
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCell(withIdentifier: cellid, for: indexPath) as? UITableViewCell
if cell == nil {
cell = UITableViewCell(style: .subtitle, reuseIdentifier: cellid)
}
let user = users[indexPath.row]
cell!.textLabel?.text=user.Name
cell!.detailTextLabel?.text = user.Email
return cell!
}
一切正常?
你有原型細胞? –
@RajeshkumarR你在談論'tableView.register(UserCell.self,forCellReuseIdentifier:cellid)'中使用的類嗎? –
你有StoryCell中的UserCell嗎? –