ios – ‘DayCalendarUnit已被弃用.使用NSCalendarUnitDay代替’不起作用

前端之家收集整理的这篇文章主要介绍了ios – ‘DayCalendarUnit已被弃用.使用NSCalendarUnitDay代替’不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Differences in NSDateComponents syntax?2个
let dateComponents = calendar.components(.DayCalendarUnit | .MonthCalendarUnit | .YearCalendarUnit,fromDate: date)

我收到了错误

iOS版8.0中不推荐使用“DayCalendarUnit”:改为使用NSCalendarUnitDay

但是,当我用Apple建议的名称替换这些名称

let dateComponents = calendar.components(NSCalendarUnitDay | NSCalendarUnitMonth | NSCalendarUnitYear,fromDate: date)

我收到错误

Use of unresolved identifier 'NSCalendarUnitDay'

解决方法

与最新的Swift 2.0一起:
NSCalendarUnit.Day

因此你现在将拥有:

let dateComponents = calendar.components([NSCalendarUnit.Month,NSCalendarUnit.Day,NSCalendarUnit.Year],fromDate: date)
原文链接:https://www.f2er.com/iOS/333143.html

猜你在找的iOS相关文章