格式化文本框使用系统背景色适配深色模式

This commit is contained in:
2026-07-12 21:53:33 +08:00
parent 657442249a
commit e55f84dd97
+1 -1
View File
@@ -34,7 +34,7 @@ class FormatLogViewController: UIViewController {
textView = UITextView()
textView.translatesAutoresizingMaskIntoConstraints = false
textView.font = UIFont.systemFont(ofSize: 16)
textView.backgroundColor = .white
textView.backgroundColor = .systemBackground
textView.layer.cornerRadius = 12
textView.textContainerInset = UIEdgeInsets(top: 12, left: 12, bottom: 12, right: 12)
textView.delegate = self