I am new to Xcode and am wondering how I can fix an alert issue that I am having. My code is:
localNotification.alertBody = "your person, \(lblUsername.text), is behind schedule for your meeting at \(lblScheduleDate.text)
What I get as an alert is: "your person, Optional("jessica"), is behind schedule for your meeting at Optional("July 25 | 1:30").
I'm wondering how to get rid of
- the Optionals
- the Quotations around the name and date/time
- the Parenthesis around the name and date/time.