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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:56:18+00:00 2026-06-13T08:56:18+00:00

Please solve my issue it giving me error as -[__NSCFString objectAtIndex:]: unrecognized selector sent

  • 0

Please solve my issue it giving me error as
-[__NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x6891460

NSString *urlString = @"http://192.168.1.190:8080/mwharf/retrive.action?action=consigneeName&startConsgn=";
NSString *url = [urlString stringByAppendingString:txtConsignee.text];

NSData *webData=[NSMutableData dataWithContentsOfURL:[NSURL URLWithString:url]];    

NSArray *jsonDict=[NSJSONSerialization JSONObjectWithData:webData options:kNilOptions error:&error];

NSMutableArray *tempArray;
NSMutableArray *consigneeArray=[[NSMutableArray alloc]init];
NSInteger arrayCount=0;
for (int i=0; i<[jsonDict count]; i++) {              
    consigneeArray =[jsonDict objectAtIndex:i]; 
    NSLog(@"consigneeArray :%@",consigneeArray);
    tempArray=[[NSMutableArray alloc]initWithArray:[consigneeArray objectAtIndex:arrayCount]]; 
    [consigneeArray insertObject:tempArray atIndex:arrayCount];
    arrayCount++; 
} 

NSArray *passArray=[NSArray arrayWithObject:consigneeArray];
NSLog(@"passArray :%@",passArray);
  • 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-13T08:56:19+00:00Added an answer on June 13, 2026 at 8:56 am

    [NSJSONSerialization JSONObjectWithData:] returns a NSDictionary and not NSArray. So because NSDictionary has no such method objectAtIndex you’ve got an error. Try this:

    NSDictionary *jsonDict=[NSJSONSerialization JSONObjectWithData:webData options:kNilOptions error:&error];
    
    NSMutableArray *tempArray;
    NSMutableArray *consigneeArray=[[NSMutableArray alloc]init];
    NSInteger arrayCount=0;
    for(NSString* key in jsonDict) {
    
    
        consigneeArray =[jsonDict valueForKey: key]; 
        NSLog(@"consigneeArray :%@",consigneeArray);
        tempArray=[[NSMutableArray alloc]initWithArray:[consigneeArray objectAtIndex:arrayCount]]; 
        [consigneeArray insertObject:tempArray atIndex:arrayCount];
        arrayCount++; 
    } 
    

    However return type could also be NSArray or NSString, it depends on your JSON structure. So the best way is to check the return type using

     [returnObj isKindOfClass:[NSDictionary class]]
    
     [returnObj isKindOfClass:[NSArray class]]
    

    etc.

    and parse each return type respectively

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

Sidebar

Related Questions

please help me solve this issue. I have a client using WCF. I don't
Please solve that mystery to me.. I'm having the simplest layout of webform, meaning
Please help me solve this problem with capybara I have a button like this
Please help me solve my big problem. in my on-line shopping project i created
Can any one please help me solve this. I am resizing some flash object/embed
Here is a way to solve Euler problem 43 (please let me know if
I have a long string, ex: Please help me to solve this problem. This
I have an issue of Facebook offline access-token please help me out how to
I have used many hours on how to solve this issue. Im using Restkit
I looked hours to solve this issue, and found nothing. Sorry if answer is

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.