I have s imple NSDate from NSString as below
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
issueDatabase.album_date = [dateFormatter dateFromString:albumXML.album_date];
but for some reason I'm getting the previous day instead of the current for eample if my
albumXML.album_date is equal 2011-09-01 I'm getting the following stored in my database 2011-08-31