mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
parent
49ae1ea6e3
commit
b8e48f4f1a
@ -25,11 +25,15 @@ class MessageTableViewCell: BaseTableViewCell<MessageTableViewCellViewModel> {
|
|||||||
return label
|
return label
|
||||||
}()
|
}()
|
||||||
|
|
||||||
let bodyLabel: UILabel = {
|
let bodyLabel: UITextView = {
|
||||||
let label = UILabel()
|
let label = UITextView()
|
||||||
|
label.isEditable = false
|
||||||
|
label.dataDetectorTypes = [.phoneNumber, .link]
|
||||||
|
label.isScrollEnabled = false
|
||||||
|
label.textContainerInset = .zero
|
||||||
|
label.textContainer.lineFragmentPadding = 0
|
||||||
label.font = RobotoFont.regular(with: 14)
|
label.font = RobotoFont.regular(with: 14)
|
||||||
label.textColor = BKColor.grey.darken4
|
label.textColor = BKColor.grey.darken4
|
||||||
label.numberOfLines = 0
|
|
||||||
return label
|
return label
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user