NSDate * senddate=[NSDate date]; component
NSCalendar * cal=[NSCalendar currentCalendar]; orm
NSUInteger unitFlags=NSDayCalendarUnit|NSMonthCalendarUnit|NSYearCalendarUnit; string
NSDateComponents * conponent= [cal components:unitFlags fromDate:senddate]; it
NSInteger year=[conponent year]; date
NSInteger month=[conponent month]; co
NSInteger day=[conponent day];
NSString * nsDateString= [NSString stringWithFormat:@"%4d/%2d/%2d/",year,month,day];