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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:51:06+00:00 2026-05-31T00:51:06+00:00

Just like in the normal iPhone calendar app, I need to make a table

  • 0

Just like in the normal iPhone calendar app, I need to make a table view which has the users calendar which they can select one and then use that and save the event to that calendar.

Any help would be much appreciated, as there doesn’t seem to be much info on this around.

Thanks.

  • 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-31T00:51:08+00:00Added an answer on May 31, 2026 at 12:51 am

    You want to check out the Event Kit Programming Guide, especially the part on Creating and Editing Events Programatically.

    You basically want to allocate and initialize an EKEventStore, and use the calendars property to get the list of calendars. It’s an array of EKCalendar objects.

    To show them in a table, you’ll end up with something like:

    // eventStore is an EKEventStore instance variable which was alloc/init'ed elsewhere
    - (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [eventStore.calendars count];
    }
    
    - (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
    {
        UITableViewCell* aCell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];
        if( aCell == nil ) {
            aCell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleDefault reuseIdentifier:@"MyCell"] autorelease];
        }
    
        EKCalendar* aCalendar = [eventStore.calendars objectAtIndex:[indexPath row]];
        aCell.textLabel.text = aCalendar.title;
    
        return aCell;   
    }
    

    You could also consider using EKEventStore’s defaultCalendarForNewEvents, rather than having your own UI to choose.

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

Sidebar

Related Questions

I make a call just like this: value = ./simulated_annealing Which is a C
I have 10 Levels. Just like a normal game, you can't play the next
I want to create some extended Binding-Markup-Extension, which behaves just like a normal WPF-Binding
...just like packages do. I use Emacs (maybe, it can offer some kind of
My Android app has a main WebView (HTML loaded from a local resource) which
I need to develop one application for iPhone which is named as Theme Apps
I am beginning Android app development and I would like to know which device
I am working on an iPhone application that has a UISearchBar which populates a
I have an iPhone app using Core Data, but I can't seem to figure
Just like it reads.

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.