I am using a MacBook developing my iOS app & run it on a real iPhone. Both my MacBook & my iPhone show me current time is 2016-08-11 13:18
But at the same time, the following code shows me the current time that is 3 hours earlier than now:
NSLog(@"NOW = %@",[NSDate date]); // it prints out 2016-08-11 10:18:17 +0000
But NSDate documentation tells me the +date
function returns current date and time. Why I get a date time three hours earlier then?