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 7574329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:24:36+00:00 2026-05-30T16:24:36+00:00

I use Date Picker in My App I want that when I select Date

  • 0

I use Date Picker in My App I want that when I select Date from date Picker and click on Done button I need to list all the things from some other class in Some view Which is occur on that particular date which I selected.Which view is best for me to display that list of things?

  • 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-05-30T16:24:37+00:00Added an answer on May 30, 2026 at 4:24 pm

    As you told you have created datePicker so when you click on done Button.

    1) Store Corresponding data into Array, so that you can show that data on to the UItableView.

    2) Create TableView :here you only need to create the TableView and show those data.Suppose have collected the data in your Array(As in step 1).

    Follow Given Steps for Creating Data in tableView.

    A) Create Instance of UItableView in UiViewController.h class in Which you want to Show The TableView

    AS `UITableView *myTableView`;
    

    B) Adopt The UITableViewDataSource,UITableViewDelegate protocol in ViewController Where you going to show TableView

    C)Create Table (programmatically or by IB(Interface Builder)
    here i am showing Programmatically

    //you may call this Method View Loading Time.    
    -(void)createTable{
        CGrect yourFrame=CGrectMake(0,20,320,400);//Set Desired Frame of Table;
        myTableView=[[[UITableView alloc]initWithFrame:yourFrame style:UITableViewStylePlain] autorelease];
        myTableView.backgroundColor=[UIColor clearColor];
        myTableView.delegate=self;
        myTableView.dataSource=self;
        myTableView.separatorStyle=  UITableViewCellSeparatorStyleNone;
        myTableView.scrollEnabled=YES;
        [self.view addSubview:myTableView];
    }
    
     //Data Source method to create number of section in Table View
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 
    return 1;   
    }
    
    // Data Source method to create number of rows section of a Table View
    - (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
        return [yourMutableArray count];
    }
     // Data Source method to create cells in Table View
     -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 
    
        static NSString *CellIdentifier = @"Cell";
        //here you check for PreCreated cell.
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }
    
        //Fill the cells...  
        cell.textLabel.text = [yourMutableArray objectAtIndex: indexPath.row];
        //yourMutableArray Contains the Data(When You click On Done Button this array will stored the data).
    return cell;
    }
    

    I Hope It’ll really Help You .

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to design an app that needs user to input few things like
I am using jQuery date picker to display the calendar all over my app.
We use a DHTML calendar picker that only allows you to change the date,
I want to use date picker on my form for selecting date. I googled
I have a requirement to use date picker in my applicaiton. I have lot
I want to use the Date::ABBR_MONTHS constant in my rails application. I see the
I'd like to use the Tapku library to add a calander date picker control
can i use jquery date picker with usercontrol of ASP.Net..?/ i tried but its
I have a problem with search form. I use date-time picker for user to
Does anyone know of an ASP.NET date picker control that works well with JAWS

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.