为了账号安全,请及时绑定邮箱和手机立即绑定

计算年龄代码单独写成函数

老师你好,我把计算年龄那块的代码单独写成一个函数,代入类型为UIDataPicker,代码如下:

func jisuanage(birthday:UIDatePicker) ->NSInteger{

       

        let gregorian = NSCalendar(calendarIdentifier: NSCalendarIdentifierGregorian)

        let now = NSDate()

       let components = gregorian?.components(NSCalendarUnit.YearCalendarUnit, fromDate:birthday.date, toDate: now, options: NSCalendarOptions(0))

        let age = components?.year

        return age!

    }

就没问题,但是如果把代入参数类型设置为NSData,然后代码改为:

 func jisuanage(birthdayyear:NSData) ->NSInteger{

        

        let gregorian = NSCalendar(calendarIdentifier: NSCalendarIdentifierGregorian)

        let now = NSDate()

        let components = gregorian?.components(NSCalendarUnit.YearCalendarUnit, fromDate:birthdayyear, toDate: now, options: NSCalendarOptions(0))

        let age = components?.year

        return age!

    }

就编译报错,报错内容:Extra argument 'toDate' in call,不知道是为什么,fromDate后面的参数不应该就是NSDate类型么?

正在回答

1 回答

hi,手误了吧?

func jisuanage(birthdayyear:NSData) ->NSInteger{

是NSDate吧,写成NSData了。我改成NSDate没有提示编译错误

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
使用Swift开发iOS8 App实战
  • 参与学习       62613    人
  • 解答问题       541    个

通过苹果最新Swift语言开发iOSApp,从零开始学习iOS的开发

进入课程

计算年龄代码单独写成函数

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信