A: Make sure you're applying the NSGregorianDateFormatter to the date, and not to the enclosing object. The correct way to use an NSGregorianDateFormatter is:
// construct a date, then turn it into a string with toString()
String aDateString;
aDateString = (new NSGregorianDate()).toString();
NSGregorianDate aDate;
// use whatever formatting that you want...
NSGregorianDateFormatter aDateFormat = new NSGregorianDateFormatter("%m/%d/%Y", false);
// format your date
aDate = (NSGregorianDate)aDateFormat.objectValueForString(aDateString);