UIDatePicker is a class in the iOS UIKit framework used to quickly and easily select dates by the user.

learn more… | top users | synonyms

-4
votes
0answers
38 views

DatePicker and TableView ios

I have a tableview with 2 rows. One of the rows is goTime, and the other is returnTime. Below the tableview i have datePicker that change 1 of the lables in the rows. I want the datePicker change the ...
0
votes
4answers
54 views

Can we assign dates to the UIDatePicker

I have an array of dates ,is it possible to assign those dates as datasourse of the UIDatePicker in an iphone app ? if so, how can i do that? Thanx in advance!
0
votes
0answers
29 views

How to set timezone(UTC) UIDatePicker?

I want to set the timezone from (-12:00) - (+12:00) to (-23:45) -(+23:45) + (NSArray *)timeZoneList { NSMutable *list = [[NSMustableArry alloc]init]; for(int n = -(23 * 60+45); n<= 23*60+45; ...
1
vote
3answers
25 views

Resizing UIDatePicker with NSContraints

I am moving to Autolayout and I am stuck among other things to resizing an UIDataPicker, previously done by setting its frame. I tried: NSLayoutConstraint *pickerWidthConstraint= ...
-3
votes
1answer
43 views

Change UIDatePicker hour and minute fields

Is it possible to disable a UIDatePicker hour and minuet fields with a switch? So lets say.. if(hourSwitch.on){ // turn hh mm on }else{ // turn hh and mm off }
0
votes
1answer
43 views

UIDatePicker not responding properly

I have a UIDatePicker placed in a view, the UIDatePicker doesn't respond properly to touches - only the rightmost column/wheel scrolls for all touches in the UIDatePicker. This is independent on where ...
0
votes
0answers
67 views

Dates in UIDatepicker not displaying properly

I have UIDatepicker .I have few queries to ask 1.)When i tap on UIButton the dates in datepicker gets retuns to minimum value since i have given maximum and minimum value . In doing that function ...
1
vote
2answers
29 views

jquery ui datepicked, change cell colour of disabled day

I have a jquery ui datepicker, I am using the beforeShowDay to disable some dates and assign a custom css. i.e. .css-class-to-highlight { background: none #000000; border: 1px solid #000000; } ...
0
votes
1answer
45 views

How to show a datepicker, a uipickerview and normal keyboard editing on click of a textfield under different conditions in a tableview?

I am facing, in my opinion, a unique issue, for which i have referred following links link 1 & link 2 already but i have not been able to completely solve my issue with those, so posting my query ...
0
votes
1answer
169 views

custom date picker in ios

Im developing a app for iPad. The requirement of this app is to show a date picker having day + month + time + year. UIDatePicker doesn't have this option. It only has Date & Time or Date or ...
2
votes
0answers
37 views

UIDatePicker - Day picker reference

I am integrating an iOS app with Accessibility. I have to put the focus on the Day-picker of an UIDatePicker, but I don't find a reference to that "subpicker". If you guys could help me with this, I ...
0
votes
2answers
59 views

How to disable keyboard but enable UITextFields when using UIDatePicker?

This one is kind of hard to explain, so ask any questions you need to clarify the question. I have an iPad app (XCode 4.2, iOS 6, ARC and Storyboards). In this app, I have a UIPopover that contains ...
0
votes
1answer
46 views

UIDatePickerView date is always loading 0:01

I am trying to pass a time selected with a UIDatePicker to change a label's text, but when I update it, it always ends up as 0:01. I have tried using the code on its own in a new project and it ...
0
votes
2answers
98 views

Retrieve date and time from UIDatePicker iOS

I want to retrieve date and time in format e.g "Friday May 31, 2013 12:00 pm". How can I achieve that with NSDateFormatter?
0
votes
0answers
44 views

UIDatePicker Automation using KIF dateChangedAction not called

I'm automating date selection on UIDatePicker using KIF. I added the accessibility label and set the target for the picker if the date changes. Ref: http://bit.ly/140ICwo +(id) changeDate: (NSDate ...
0
votes
1answer
36 views

Change iOS Device Date

I have a UIWebView that displays a date for an oriental calendar. If i go into settings and change my device date, then reload the app, the UIWebView date also changes. My question is, is there a way ...
0
votes
0answers
73 views

auto scroll out of range date(maximum-minimum) select in UIDatePicker

I am new in ios.i have set maximum and minimun date in my datePicker working fine. The first time i attempt to select a date outside of the minimum and maximum range, the UIDatePicker will scroll ...
0
votes
2answers
66 views

UIDatePicker Event Changed

I write a simple iOS app just for learning, in my case I need to use a UIDatePicker and, after the user change the date, I need to write this date to an UITextField, here's the code: .h File ...
0
votes
2answers
114 views

iOS UIDatePicker set max date

I got an issue in trying to limit the date. With setting the date like that self.datePicker.maximumDate = [NSDate date]; it is only grey the date after now but enable the user to select a date after ...
0
votes
3answers
89 views

How to make UIDatepicker to show user selected time

I have a UIDatepicker where I am letting user chose time . UITableview is in a UIView where on click of a UIButton a UIDdatePicker appears, when the user choose a time and press back button to dismiss ...
0
votes
0answers
59 views

issue regarding UIDatePicker ios

I have a view controller where I have some text fields. Two of those text fields need to hold dates, for which I'm using datepicker. Here's the code: - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
2answers
50 views

UIDatePicker selected date does not appear

UIDatePickerView is working fine. It shows up, I can scroll through the dates, but for some reason my selectedOB.text keeps coming up as Todays date! No matter what date I choose, it shows as todays ...
0
votes
1answer
30 views

Making ui datepicker header collapsible

I am trying to take the ui-datepicker-header and convert it to an accordion. It actually works (sort of). I want to hide notes here for the user to reveal if they choose. I need the accordion to be ...
0
votes
2answers
86 views

How to set Minimum time to appear as default in UIDatepicker everytime

In Datepicker i have set Min and Max time where uidatepicker can scroll for example i have set 3:00PM as minimum time and 8:00PM as maximum time , when i run the app i want the datepicker to display ...
0
votes
1answer
39 views

UIImage not aligning properly on UIDatepicker ( In device only)

I have a UIDatepicker where i have added border image so that it sits on top of UIDatepicker border . In simulator the border image is in exactly on top of UIDatepicker border ,but when i run the ...
0
votes
2answers
63 views

UIDatePicker issue on second instance

I am using two UIDatepicker in my project. When I create second DatePicker, then I face problem in setting date on the second. This is archive of my project with two DatePickers. Where is problem?
2
votes
0answers
61 views

UIDatePicker customization

Hi guys I have customized UIDatePicker to a level and I am adding it to UIAlertView. but I am getting a black color on the bottom and the top of date picker, how to remove it. I want the date ...
3
votes
2answers
51 views

UIDatePicker minimumdate

I'm confused with one question. I don't understand where I made mistake I needed make minimumdate for my UIDatePicker near 1810 year. So I try make it like datePicker.minimumDate = [[NSDate ...
2
votes
3answers
133 views

How to create DatePicker with two components (Months & Years), which also would show All months as the option to select the whole year?

I'm a beginner in iOS development, so maybe it's a dumb wish from my side. Nevertheless, the thing is: I'm making a Statistics section of my app, which should let user choose a certain month and year ...
0
votes
2answers
47 views

Communiacting between UIDatePicker and UITableView

In my project I have 3 controllers; NavigationController ServiceTableViewController DateTableViewController The ServiceTableViewController is the initial view controller. It has several rows which ...
0
votes
2answers
60 views

How to create a UIDatePicker on the bottom of the screen and collect the data?

This is two questions.. How do I place my UIDatePicker on the bottom of the page? How can I get the date from the picker. Here is my code for when I add the date picker: picker = [[UIDatePicker ...
1
vote
2answers
60 views

Show UIDatePicker and its toolbar when clicking on a UIBarButtonItem

In my app's ViewController, I have 3 differents items: @property (weak, nonatomic) IBOutlet UIBarButtonItem *dateSelect; @property (weak, nonatomic) IBOutlet UIToolbar *dateToolbar; @property (weak, ...
0
votes
0answers
48 views

UIDatePicker Displays 2013-04-23 16:12:10 instead of 11:10

I have a UIDatePicker that works properly however I want to modify the date and time to look like the following: 04-23-2013 11:10 instead of 2013-04-23 16:12:10. How would I go about this? Here is ...
0
votes
1answer
130 views

JQuery Datepicker date range and months

I would like to show number of months shown based on the number of selectable days. So an example would be that if I have 15 days to select from and the date starts from today (23/04/2013) I would ...
0
votes
1answer
65 views

UIDatePicker change locale

I am trying to change locale for UIDatePicker like this: picker.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; It is working, but after setting locale the picker does not meet the ...
1
vote
1answer
84 views

Get selected row of UIDatePicker while spinning

I have a UIDatePicker in a view whose controller is in a UINavigationController. I'm registering changes in the selected date like this: [self.datePicker addTarget:self.alarm ...
0
votes
0answers
37 views

Auto rearrangement of uitableviewcell item

I am allowing users to choose a date from UIDatePicker view and then the title of the UITableView will show the dates from the picker view . My question is, is it possible for the UITableView to ...
0
votes
1answer
83 views

jQuery datepicker not opening up on focus

Heres my scenario: I have an index page with 2 radio buttons on it and a span area for results. When one of the radio buttons are clicked, the span fills up with an ajax generated page that has an ...
0
votes
5answers
45 views

Subview isn't positioned correctly

I am adding a UIDatepicker to a UIViewController, which is the rootview of a UINavigationController, and I use this code to position the Datepicker at the bottom of the screen. UIDatePicker *picker = ...
0
votes
2answers
42 views

ios set UIDatePicker time ahead

I grab the current time NSDate * now = [[NSDate alloc] init]; NSCalendar *cal = [NSCalendar currentCalendar]; NSDateComponents * comps = [cal ...
2
votes
1answer
44 views

UIDatePicker and date not storing properly

I have an IBAction method tied to a UIToolbarButton that runs the following code. The UIDatePicker is setup only to show the time to the user. Therefore, the picker randomly chooses the date: ...
0
votes
1answer
36 views

How do I disable time Period on UIDatePicker?

I am working on an app that involves gathering components of 2 UIDatePickers, one for time and one for the date. I would love to if possible remove the Period column (AM/PM) from the time picker. If ...
0
votes
3answers
231 views

When user press button show datepicker view and select date and then display as button title and further close datepicker view

I wrote this code. but not worlking... Yes NSLog is saw proper date. Datepicker also saw and select date. But when i select date nothing to changes on my button title and datepicker remain on the ...
0
votes
1answer
81 views

Why is the space behind my UIDatePicker black?

As illustrated in this image: _date.datePickerMode = UIDatePickerModeCountDownTimer; This line causes my problems. Without hiding the first and last element in its view, the entire bottom portion ...
0
votes
3answers
30 views

UIDatePicker Scheduler Error

I have followed this tutorial http://ios.biomsoft.com/2011/08/27/iphone-programming-tutorial-–-local-notifications/ I am able to run the app, however in order to run the app I have remove the ...
1
vote
2answers
77 views

UIDatePicker's wheel is not displayed correctly while scrolling

UIDatePicker's wheel is not displayed correctly while scrolling. This problem occurs if I hide UIDatePicker Controller or navigate in another screen.
0
votes
2answers
85 views

Disable a particular date in UIDatePicker

I was trying to set up a uidatepicker for booking some events in the calendar. I need to disable (hide) some particular dates in my UIDatePicker, for instance days when I'm out of town or on vacation. ...
-2
votes
2answers
102 views

UIDatePicker with single row [closed]

In my application i need to integrate UIDatePicker view with single row (only one row needs to display, that's a selection row. UIDatePicker selection functionality is same like scrolling date up ...
1
vote
1answer
64 views

is it possible to add components to UIDatepicker?

I have a uidatepicker in Time Mode I want to add a component with string value into it I think I have 2 approaches: 1.using a custom pickerview 2.adding component to uidatepicker of my Mode Time(I ...
0
votes
0answers
225 views

Passing data into Container View using Embed Segue

So I've seen most of the tutorials (and am using the technique) to pass data from one view controller to the next when the segue is a push (in the prepareForSegue method). I can cast the ...

1 2 3 4 5 13