Make selectedDate nullable

If the property is not marked nullable then a forced unwrapping is occuring which is causing a crash.
This commit is contained in:
Ashley Streb 2016-12-01 18:29:54 -05:00
parent f7ca21461f
commit 9ecb641a30
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ IB_DESIGNABLE
/**
A date object identifying the section of the selected date. (read-only)
*/
@property (readonly, nonatomic) NSDate *selectedDate;
@property (nullable, readonly, nonatomic) NSDate *selectedDate;
/**
The dates representing the selected dates. (read-only)