I just updated Xcode to its 6.3 version.
Except all the fixes I have to make regarding as
(mainly), I have some warnings that just appeared (which is weird as it states it is since iOS 8.0).
My code
NSCalendar.currentCalendar().compareDate(self, toDate: date, toUnitGranularity: .DayCalendarUnit) == .OrderedAscending
is now shows a warning
'DayCalendarUnit' was deprecated in iOS version 8.0: Use NSCalendarUnitDay instead
Fine, then I'll change .DayCalendarUnit
by NSCalendarUnitDay
Now I get an error saying:
Use of unresolved identifier 'NSCalendarUnitDay'
I'm confuse, can someone explain me what's wrong and how to fix it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…