Reputation: 9587
I would like to know how my iOS app can get the datetime from a distant server (NTP ? Other..?), and not with local iPad datetime ; and transform it on NSDate.
Thanks
Upvotes: 4
Views: 1994
Reputation: 114138
https://github.com/jbenet/ios-ntp seems to be a NTP framework for iOS which gives you
[NSDate networkDate];
Upvotes: 4