Joe24
Joe24

Reputation: 161

set specific date in Date Picker IOS

I have a Date Picker on my story board but I don't want it to default to today's date. I want the date to start at July 15 1998. In the attribute inspector i set the date to that and it shows it on my story board but when I launch the application it is still on today's date. Is there something else I have to do for it to work?

Upvotes: 0

Views: 4614

Answers (1)

Conflagrationator
Conflagrationator

Reputation: 251

[yourDatePicker setDate:[NSDate dateWithTimeIntervalSince1970:900478800]];

or if you want to be fancy:

[yourDatePicker setDate:[NSDate dateWithTimeIntervalSince1970:900478800] animated:YES];

you can put this in your viewDidLoad:

Upvotes: 4

Related Questions