Questions tagged [uidatepicker]

The UIDatePicker is a class in the UIKit framework of iOS which represents an graphical object that uses multiple rotating wheels to allow users to select dates and times.

The UIDatePicker class implements an object that uses multiple rotating wheels to allow users to select dates and times. On UIDatePicker, you can find the following methods:

Managing the Date and Calendar

  • calendar property
  • date property
  • locale property
  • setDate:animated:
  • timeZone property

Configuring the Date Picker Mode

  • datePickerMode property

Configuring Temporal Attributes

  • maximumDate property
  • minimumDate property
  • minuteInterval property
  • countDownDuration property
1661 questions
0
votes
1 answer

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 project on iphone / ipod device .the border image…
raptor
  • 291
  • 1
  • 9
  • 17
0
votes
2 answers

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?
twox
  • 1
  • 1
0
votes
1 answer

UIDatePicker and previous view

As with the settings page, I have a UI that displays a list of parameters, one of which is a date. When the user presses the row containing the date, a controller displaying a UIDatePicker is pushed. What is the best way to update the table row…
Phil
  • 15
  • 2
0
votes
2 answers

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 prompt the user to enter in data, which will be…
Green Developer
  • 187
  • 4
  • 18
0
votes
1 answer

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 alloc] initWithFrame:CGRectMake(0, 0, 0, 0)]; [picker…
Jason Silberman
  • 2,471
  • 6
  • 29
  • 47
0
votes
1 answer

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 like only April and May to be shown as number of…
Dev
  • 781
  • 9
  • 29
0
votes
0 answers

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 rearrange the items from old to new according to the…
Clarence
  • 1,951
  • 2
  • 34
  • 49
0
votes
1 answer

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 input box as so :
Juan
  • 1
  • 1
  • 2
0
votes
5 answers

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 = [[UIDatePicker alloc] initWithFrame:CGRectMake(0,…
digga
  • 103
  • 2
  • 12
0
votes
2 answers

ios set UIDatePicker time ahead

I grab the current time NSDate * now = [[NSDate alloc] init]; NSCalendar *cal = [NSCalendar currentCalendar]; NSDateComponents * comps = [cal components:NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit fromDate:now]; And I can set the…
Jesse Meyer
  • 315
  • 1
  • 3
  • 12
0
votes
1 answer

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 this is not possible, I still have not been able…
willbattel
  • 1,040
  • 1
  • 10
  • 37
0
votes
2 answers

jQuery datepicker doesn't work

I can't get the jQuery datepicker to work. I have followed everything from the jQuery UI manual. Can you please check my code below?
Obay
  • 3,135
  • 15
  • 55
  • 78
0
votes
3 answers

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 following code in my appdelegate.m You can see the…
flyers
  • 514
  • 2
  • 5
  • 16
0
votes
2 answers

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.
Sonu
  • 937
  • 1
  • 10
  • 39
0
votes
1 answer

UIDatePicker and UITextView

I want to show a text in UITextView depend on the date, some thing like "in This Day App", I have this code in action -(void)changingText:(id)sender { NSDateFormatter *df = [[NSDateFormatter alloc] init]; df.dateStyle =…
1 2 3
99
100