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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:52:00+00:00 2026-05-23T18:52:00+00:00

I am trying to create a table like the one where you choose your

  • 0

I am trying to create a table like the one where you choose your ringtone in the Settings app. I’d like to implement it like it is often done in third party apps, where once a selection is made, the navigation controller slides the selection screen to the right to reveal the preferences screen again, as soon as the ringtone is selected.

What’s different in my desired implementation, is that there will be no preferences screen, just a series of selection screens that the user will progress through, differently depending on what the previous selection is.

I am mostly wondering how to make a table like in the selection screen as I cannot seem to find any documentation/samples like it (perhaps I don’t quite know how to phrase the search as it seems like there should be some resources out there about this). I am quite certain I can figure out the rest, but any additional input would be very much appreciated.

  • 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-23T18:52:01+00:00Added an answer on May 23, 2026 at 6:52 pm

    Sorry I really messed that one up – that was the code for a checklist: – This is the code for a radio button style settings pane:

    Where selected is an int ivar/property holding the last selected value:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
        int newRow = [indexPath row];
    
        if (newRow != selected) {
            UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
            newCell.accessoryType = UITableViewCellAccessoryCheckmark;
    
            NSIndexPath *oldIndex = [NSIndexPath indexPathForRow:selected inSection:0];
            UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:oldIndex];
            oldCell.accessoryType = UITableViewCellAccessoryNone;
    
            selected = [indexPath row];
        }
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
        [[NSUserDefaults standardUserDefaults] setInteger:newRow forKey:key];
    
        // Then in your case you would add:
        [self.navigationController popViewController];
    }
    

    Sorry for messing it up the first time!

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

Sidebar

Related Questions

I'm trying to create a Users table that only has OpenId registrations, exactly like
I'm trying to create a table with Listview and one of the fields I'm
Pretty new to sqlite (and sql). Trying to modify one table using another. create
I can't create more than one table on a Chrome App dadabase Here is
I'm trying to create a table-like object within an SVG document. Currently, due to
I am trying to create a table with the following: CREATE TABLE GTW_WORKFLOW_MON (
I'm trying to create a table with two columns comprising the primary key in
I am trying to create a table though prepare statement but it is giving
I'm trying the following: CREATE TABLE Table1 ( RecordNo autonumber, --error here! PersonId varchar(50),
I am trying to create a table in MySql using php. My code looks

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.