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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:07:51+00:00 2026-05-12T09:07:51+00:00

I am loading approximately 60 to 80 data from web-service. But If you have

  • 0

I am loading approximately 60 to 80 data from web-service.

But If you have seen “Around Me – Google – Application”
-> It has a tableView as a search result
-> In table View last cell is written as view More
-> On clicking that more data appears

I want to implement the same effect / logic to my application but don’t know how?

Would you plz help me?

  • 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-12T09:07:51+00:00Added an answer on May 12, 2026 at 9:07 am

    Aviad Ben Dov and rkbang offer some useful advice. Adding to that:

    To respond to a touch on your “View More” cell, write a tableView:willSelectRowAtIndexPath: method (from the UITableViewDelegate protocol) in whichever object is the delegate for your UITableView. In this method, make a call to load more data, and return nil so the row does not stay selected (which is more button-like behavior):

    - (NSIndexPath *)tableView:(UITableView *)tableView
      willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        [self loadMoreData];
        return nil;  // Don't leave this row selected.
    }
    

    In your load function, make a server call to get the data, parse it, and reload the table. It’s also polite to give a busy indicator while you’re waiting for the server reply:

    #import "HTTPHelper.h"
    
    // ... later ...
    
    - (void) loadMoreData {
      [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
      NSString* dataStr = nil;
      NSError* error = [[HTTPHelper sharedInstance]
                        synchronousGetURLAsString:@"http://server.com/mystuff"
                        replyData:&dataStr];
      [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
      if (error) {
        [self displayErrorMessage:error];
      } else {
        [self parseIntoDataSource:dataStr];
        [tableView reloadData];
      }
    }
    

    In this last function, I’m assuming the method parseIntoDataSource will parse the server reply and add that data to whatever your class uses to provide the data for table cells which are given by the tableView:cellForRowAtIndexPath: method (of the UITableViewDataSource protocol).

    That code also uses HTTPHelper from the moriarty library.

    If you want to parse XML, you can use the SDK’s own NSXMLParser. The TouchXML library is also available, and offers a little more robust support for slightly dirty data (like real-world html, which does not usually conform to XML standards). To parse JSON, you could use the json-framework, which has a very simple category-based interface.

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

Sidebar

Related Questions

I´m loading data from MySQL DB into Java application. How to define column type?
I have a table which has approximately 140 columns. The data for this table
C# - Loading image from file resource in different assembly I have a PNG
When loading an image from the web I am getting a black screen. I
I'm loading approximately 20 pictures of size 50-70K from server, then display them in
I am loading a jqgrid with approximately 100 rows of data. When the data
Does loading unimportant data right after page load using AJAX help load the web
I have an XBAP application which is approximately 1.3MB in size. I have tried
When loading the RTextTools package from CRAN, I get the following warnings: Warning messages:
I'm playing around with Processing to see how everything works, but when dealing with

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.