简体   繁体   中英

How to get the unix timestamp from UIDatePicker

如何从UIDatePicker获取Unix时间戳

UIDatePicker *picker = ...;
NSTimeInterval t = [picker.date timeIntervalSince1970];

You can subsequently use the NSTimeInterval as a numeric primitive type, which at the time of writing is a double . You may want to cast it to an int explicitly, depending on the use case.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM