iOS Swift - SwiftUI Basics
What will be the output when the following Swift code executes and the button is tapped?
let button = UIButton()
button.addTarget(self, action: #selector(showAlert), for: .touchUpInside)
@objc func showAlert() {
print("Alert shown")
}