I have an IMObject class, in it I have an NSDate * StartDate field. I fill this field with a return of the database:
(IMMutableArrayIMTable*)[databaseTemp retrieve: @"select * from table" withParams:nil forClass: [IMTable class]]
In the XCode Watch I see the value of the object as:
StartDate = (_NSDate *) 2014-05-28 08:00:00:00 BRT
However, if I give a print in this field it will show me 3 more hours in the case of 2014-05-28 11: 00: 00: 00 .
I think it might be some time zone problem, but I do not know how to solve it. My project is with Localizations English. Does anyone know how to solve it or do you have any idea what it might be?