Why is detailTextLabel not visible?

后端 未结 6 2224
醉酒成梦
醉酒成梦 2020-12-05 09:30

detailTextLabel is not visible (code below). Can you tell me why?

 // Customize the appearance of table view cells.
 - (UITableViewCell *)ta         


        
6条回答
  •  生来不讨喜
    2020-12-05 09:33

    In order to solve it programmatically:

    let cell = UITableViewCell(style: .subtitle, reuseIdentifier: "identifier")
    

提交回复
热议问题