Depending on what you called your datepicker this should work:
Code:
NSDate *pickerDate = [datePicker date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSString *dateAsString = [dateFormatter stringFromDate:pickerDate];
Of course you could simplify this by just using the date formatted on [datePicker date] but this shows you each part.