I'm not sure why, but for some reason I control-dragged a button as an Outlet to a view controller as usual, but the name was surrounded by Grave Accents ( ` ). Is there a reason for this? I haven't seen this notation before in Swift. What does it stand for?
My Outlets
@IBOutlet weak var q1: UITextField!
@IBOutlet weak var q2: UITextField!
@IBOutlet weak var q3: UITextField!
@IBOutlet weak var q4: UITextField!
@IBOutlet weak var q5: UITextField!
@IBOutlet var questions: [UITextField]!
@IBOutlet weak var `continue`: UIButton!