0
I have an Imobject class, in it I have an Nsdate *Startdate field. I fill this field with a database return:
(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 print this field it shows me 3 more hours, in case 2014-05-28 11:00:00:00.
I think it might be some kind of time zone problem, but I don’t know how to fix it. My project is with Localizations Portuguese. Does anyone know how to solve or have any idea what it might be?