|
@@ -26,9 +26,9 @@ class ContactDetailViewController: UITableViewController {
|
|
return cell
|
|
return cell
|
|
}()
|
|
}()
|
|
|
|
|
|
- private lazy var ephemeralMessagesCell: UITableViewCell = {
|
|
|
|
- let cell = UITableViewCell(style: .default, reuseIdentifier: nil)
|
|
|
|
- cell.textLabel?.text = String.localized("ephemeral_messages")
|
|
|
|
|
|
+ private lazy var ephemeralMessagesCell: BasicCell = {
|
|
|
|
+ let cell = BasicCell(style: .default, reuseIdentifier: nil)
|
|
|
|
+ cell.title.text = String.localized("ephemeral_messages")
|
|
cell.selectionStyle = .none
|
|
cell.selectionStyle = .none
|
|
cell.accessoryType = .disclosureIndicator
|
|
cell.accessoryType = .disclosureIndicator
|
|
return cell
|
|
return cell
|