When I retrieve a value from core data, it is displaying with prefix "Optional" on the story board. How to avoid showing "Optional" in front of the retrieved value?
Here is the line of code:
schoolYearStartDateText.text = String(newRateMaster.schoolYearStartDate)
value entered - 01/01/11
Value displayed on debugger and Storyboard:
Optional(0011-01-01 04:56:02 +0000)
With NSSet this gets worse. Value prefixed with Optional and multiple levels of parenthesis!