Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
576 views
in Technique[技术] by (71.8m points)

ios - Use of unresolved identifier NSCalendarUnitDay

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use .CalendarUnitDay. NSCalendar is a native Objective-C framework and the error messages aren't for swift.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...