NSDate *createDate = [NSDate dateWithTimeIntervalSince1970:1376460694.103];
NSLog(@"createDate %@",createDate);
I am using the above code to get the current date and time,when I put break point at createDate,It shows correct time stamp value,but NSLog(@"createDate %@",createDate) statement is printing the date as 2013-08-14 06:11:34 +0000.
How to get the correct result?