I would like to get UTC timestamp. I cant do it like this [[NSDate date] timeIntervalSince1970];
becouse it returns timestamp in local timezone. How can I get timestamp in UTC in iOS?
Edit
Solved I can use [[NSDate date] timeIntervalSince1970];
:)