Configure UIDatePicker with current locations time
- by Telkitty
I am using UIDatePicker in my current app, here is how I set a UILabel with the date time string obtained from the UIDatePicker.
-(IBAction)AddTimeEnd:(id)sender
{
NSDate * date = [m_DateTimePicker date];
m_DateTimeLabel.text = [date description];
}
Somehow the time I have entered (EST) kept on getting converted to US time in the…