iOS Swift - SwiftUI Basics
Given this code snippet, what will be printed when the button is tapped?
let button = UIButton()
button.addTarget(self, action: #selector(buttonPressed(_:)), for: .touchUpInside)
@objc func buttonPressed(_ sender: UIButton) {
print(sender.isEnabled)
}