WangYang
WangYang

Reputation: 499

How to get the unix timestamp from UIDatePicker

How to get the unix timestamp from UIDatePicker

Upvotes: 1

Views: 1026

Answers (1)

mvds
mvds

Reputation: 47084

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.

Upvotes: 5

Related Questions