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

  • Home
  • SEARCH
  • 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 9165969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:02:49+00:00 2026-06-17T15:02:49+00:00

i have a custom class called contact . This class has attributes like name,

  • 0

i have a custom class called contact. This class has attributes like name, address etc.
I wish to create an array of type contact and display the value of each attibute in a custom cell in UItableview.
Code to store the data in array:

while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
            // Read the data from the result row
            NSString *aName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)];
            myContact.nm = aName;
            NSString *aAddress = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)];
            myContact.address = aAddress;

            NSLog(@"%@",aName);     
            [list.details addObject:myContact];
            NSLog(@"%@", list.details);

}

here details is an array declared as @property(nonatomic,retain)NSMutableArray *details; in .h

My question is that how do i retrieve the values on each index like :

[0]->name
[0]->address

[1]->name
[1]->address ....

my code in tableview.m:

cell.name.text = [details objectAtIndex:indexPath.row]; // not working

how do i solve this?

  • 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-17T15:02:51+00:00Added an answer on June 17, 2026 at 3:02 pm

    [details objectAtIndex:indexPath.row]; returns the Contact object. What you need is, nm property of Contact object which represents the name in your code.

    Try this,

    Contact *myContacts = [details objectAtIndex:indexPath.row]; 
    cell.name.text = [myContacts nm]; //or [[details objectAtIndex:indexPath.row] nm];
    

    Similarly you can get [myContacts address] as well.

    Edit:
    Based on your question in comments, the answer is:

    while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
    
            Contact *myContact = [[Contact alloc] init]; //you should add this here, not outside the loop
            // Read the data from the result row
            NSString *aName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)];
            myContact.nm = aName;
            NSString *aAddress = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)];
            myContact.address = aAddress;
    
            NSLog(@"%@",aName);
            [list.details addObject:myContact];
            NSLog(@"%@", list.details);
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom class called game. Say I create 3 instances of this
I have a custom class that uses boost mutexes and locks like this (only
I have a custom class called card and I need to create a set
I have a ComboBox filled with a custom Class called TableHeader, this class contains
I have a custom class like this: @interface formParser : NSObject <UITextFieldDelegate> { ....
I have a custom class in Obj-C called RouteManager which contains an array of
Having problems with array of pointers. I have a custom class called C .
I have created a custom class called RCTextField , whose purpose is to create
I have a custom class called CustomClass. It contains a variable called Name and
I have a data object -- a custom class called Notification -- that exposes

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.