uibutton
-
UIButton 커스텀(Image & Title)iOS 2023. 2. 1. 20:08
lazy var okButton: UIButton = { let button = UIButton(type: .custom) button.translatesAutoresizingMaskIntoConstraints = false button.layer.cornerRadius = 8 button.backgroundColor = .systemGreen button.setTitle("OK", for: .normal) // Title button.titleLabel?.font = .systemFont(ofSize: 20) button.setImage(UIImage(systemName: "checkmark.circle"), for: .normal) // Image button.addTarget(self, action..