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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:34:04+00:00 2026-06-10T12:34:04+00:00

I would like to build up a table view section into my iOS app

  • 0

I would like to build up a table view section into my iOS app just like the Facebook style (with many information in every row, images and buttons, ..).

I also want to include Core Animation effects on every row, like fade out the cell, or customize the graphic interface.

Do you recommend me to use the UITableView class or something else more ‘customizable’?

  • 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-10T12:34:05+00:00Added an answer on June 10, 2026 at 12:34 pm

    You should use the regular UITableView, but custom UITableViewCells.
    UITableView‘s support fading and other kind of animations for adding/removing/reloading cells

    NSMutableArray *affectedRows = [NSMutableArray array];
    [affectedRows addObject:[NSIndexPath indexPathForRow:0 inSection:0]];
    [affectedRows addObject:[NSIndexPath indexPathForRow:1 inSection:0]];
    
    // use whatever corresponds
    [self.tableView deleteRowsAtIndexPaths:affectedRows withRowAnimation:UITableViewRowAnimationLeft];
    
    [self.tableView insertRowsAtIndexPaths:affectedRows withRowAnimation:UITableViewRowAnimationLeft];
    
    [self.tableView reloadRowsAtIndexPaths:affectedRows withRowAnimation:UITableViewRowAnimationLeft];
    

    Be careful when using these methods, because the numberOfRowsInSection: function gets called again, and if the new result doesn’t match the new number of rows, your app will crash

    IE: you have 5 rows, and delete 2, your method must then return 3

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

Sidebar

Related Questions

i would like to build a custom table view cell and put in him
I am trying to build a tablet optimized app and I would like to
I would like to build two different versions of my app using different android:minSdkVersion.
I have a set of tables that I would like to build a view
Hi all i would like to build a menu that looks like a table
I would like to expand a row in a UITableView just like the build
I would like to build a php script that automatically generates a new id
I would like to build a cypher with python which decoding text by repeatedly
I would like to build up a new IDocument object step by step using
I would like to build modules via an aggregator, but avoid the aggregator project

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.