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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:45:49+00:00 2026-05-28T03:45:49+00:00

I have got a table view which is populated by json webservice url.I am

  • 0

I have got a table view which is populated by json webservice url.I am using “UITableViewCellAccessoryCheckmark” for tick mark. when user multiple select the tableview I want all the selected row data to be stored in a single variable.Could you guys help me out. below is the code.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];

}

if ([self.arForIPs containsObject:indexPath]) {
    [cell setAccessoryType:UITableViewCellAccessoryCheckmark];
}
else {
    [cell setAccessoryType:UITableViewCellAccessoryNone];
}


NSString *imagefile1 = [media1 objectAtIndex:indexPath.row]; 


cell.textLabel.text=[story objectAtIndex:indexPath.row];

cell.detailTextLabel.text=[descriptiondesc objectAtIndex:indexPath.row];

cell.detailTextLabel.numberOfLines=2;
//cell.detailTextLabel.backgroundColor=[UIColor clearColor];

img=[UIImage imageNamed:@"icon.png"];
cell.imageView.image=img;

NSLog(@"BOOMMMM:%@",pileup);
return cell;
 }

enter image description here

  • 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-28T03:45:50+00:00Added an answer on May 28, 2026 at 3:45 am

    If you’ve enabled multiselection you should be able to use UITableView’s indexPathsForSelectedRows to get all the indices of the selected rows. With this you can refer back to your original data downloaded from the server and get the strings you need.

    You can use it within tableView:didSelectRowAtIndexPath: to build a string of all the currently selected rows.

    EDIT:
    To store a few pieces of associated data together you can use an NSDictionary (or NSMutableDictionary if you need to edit it after creation).
    For example for your code, to store all the data for one row:

    NSMutableDictionary * dict = [[NSMutableDictionary alloc] initWithCapacity:3];
    [dict setObject:[media1 objectAtIndex:indexPath.row] forKey:@"image"];
    [dict setObject:[story objectAtIndex:indexPath.row] forKey:@"story"];
    [dict setObject:[descriptiondesc objectAtIndex:indexPath.row] forKey:@"desc"];
    

    or you could create it straight into a regular NSDictionary, see here: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/nsdictionary_Class/Reference/Reference.html

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

Sidebar

Related Questions

The scenario is I have got 2 dropdown list and a table in which
I've got a document based App using Core Data, and have a tableView which
I have got a table in MS Access 2007 with 4 fields. Labour Cost
I have got a simple MySQL table and primary index (id) is not numbered
I got a table where in got allocated space of 3gig but have no
I've got a table that people have been inserting into getting the primary key
I've got a table containing many rows. The rows are guaranteed to have been
I've got a table recording views of programs. Each program can have two different
I have a table that got into the db_owner schema, and I need it
I have a looklup table, its got an ID and a NAME field. The

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.