Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8461629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:55:55+00:00 2026-06-10T13:55:55+00:00

I am creating Alarm app. I want to display UIDatePicker in UIActionSheet when tapping

  • 0

I am creating Alarm app. I want to display UIDatePicker in UIActionSheet when tapping on UITextField.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:55:56+00:00Added an answer on June 10, 2026 at 1:55 pm

    For doing this you need to implement UIActionShetDelegate and UITextFieldDelegate
    In the textFieldDidBeginEditing you need to show the action sheet like:

    -(void)textFieldDidBeginEditing:(UITextField *)sender
    {
      [self showAction];
    }
    -(void) showAction
    {
      UIActionSheet *asheet = [[UIActionSheet alloc] initWithTitle:@"Pick the date." delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Select", nil];
      [asheet showInView:[self.view superview]];
      [asheet setFrame:CGRectMake(0, 117, 320, 383)];
      [asheet release];
    }
    
    - (void)willPresentActionSheet:(UIActionSheet *)actionSheet
      {
    
        UIDatePicker *pickerView = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 40, 320, 216)];
    
       //Configure picker...
       [pickerView setMinuteInterval:5];
       [pickerView setTag: kDatePickerTag];
    
      //Add picker to action sheet
      [actionSheet addSubview:pickerView];
    
      [pickerView release];
    
      //Gets an array af all of the subviews of our actionSheet
      NSArray *subviews = [actionSheet subviews];
    
      [[subviews objectAtIndex:SelectButtonIndex] setFrame:CGRectMake(20, 266, 280, 46)];
      [[subviews objectAtIndex:CancelButtonIndex] setFrame:CGRectMake(20, 317, 280, 46)];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a simple alarm clock app. The problem is that i get the
I am creating an app which as settings for alarm. My alarm rings when
Creating an a app, where I store bunch of photos in the drawable folder,
I'm creating an Android app where in the user can set the daily reminder,
I am creating an service which is use Service Component ,I want to run
I am creating reminder type demo app. that include at every morning 7 a.m.
I am creating player application, which is playing audio streams through internet. I want
As I'm developing my app, I'm finding that I'm re-creating a tile control far
I am creating an Alarm in application to run at 8 Am every morning
I'm very stuck creating an alarm from a DatePicker and TimePicker... This is the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.