Here is my code:
@IBOutlet weak var getUrl: UITextField!
@IBOutlet weak var getUrlLabel: UILabel!
@IBAction func changeBtn(_ sender: Any) {
if let value = getUrl.text {
getUrlLabel.text = value
print(value)
}
}
And it gives an error : EXC_BAD_INSTRUCTIONS (code=EXC_i386_INVOP, subcode=0x0)