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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T21:57:00+00:00 2026-06-10T21:57:00+00:00

I am using a NSXMLParserDelegate method to get the data from XML file but

  • 0

I am using a NSXMLParserDelegate method to get the data from
XML file but I cant get the data I want.
The xml file is like:

<faces>
  <bounds x='70' y='250' width='438' height='438'/>
  <right-eye x='208' y='424'/>
  <left-eye x='368' y='426'/>
  <features s-avg='0.82' s-min='0.51' s-max='0.92'>
    <point id='PR' x='223' y='425' s='0.76'/>
    <point id='PL' x='362' y='424' s='0.91'/>
</faces>

From this file I want to get the values for attributes x,y, and s only for the point element with attribute id equal to "PR".
Logging the value should show x=223.

This is my parsing process:

-(void) parser:(NSXMLParser *) parser didStartElement:(NSString *) elementName namespaceURI:(NSString *) namespaceURI qualifiedName:(NSString *) qName attributes:(NSDictionary *) attributeDict {
  if ([elementName isEqualToString:@"point"]) 
  {
      NSString *idvalue = [attributeDict objectForKey:@"id"];
      if (idvalue==@"PR")
      {
          NSString *xvalue = [attributeDict objectForKey:@"x"];
          NSLog(@"%@",xvalue);
          NSString *yvalue = [attributeDict objectForKey:@"y"];
          NSLog(@"%@",yvalue);
          NSString *svalue = [attributeDict objectForKey:@"s"];
          NSLog(@"%@",svalue);   
      }
   }

I will get a log like:

X=223 X=362 Y=425 Y=424 S=0.76 S=0.91

Values of x,y,and s for all elements.
How can I get the values only for element with the attribute ID=”PR”?
I am hoping someone can give me a reason why or if you can point me in a direction to finally get this problem solved because its becoming a real pain in the behind.

  • 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-10T21:57:02+00:00Added an answer on June 10, 2026 at 9:57 pm

    Essentially, as Matthias pointed out in comments, you want to use NSString‘s -isEqualToString method. The reason for this is that idvalue==@"PR" is really just comparing the numeric value of the two NSString pointers, not their contents. The -isEqualToString method actually compares the contents of the strings referenced by said pointers.

    Used as:

    NSString *idvalue = [attributeDict objectForKey:@"id"];
    if ([idvalue isEqualToString:@"PR"])
    {
        NSString *xvalue = [attributeDict objectForKey:@"x"];
        NSLog(@"%@",xvalue);
        NSString *yvalue = [attributeDict objectForKey:@"y"];
        NSLog(@"%@",yvalue);
        NSString *svalue = [attributeDict objectForKey:@"s"];
        NSLog(@"%@",svalue);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Java,I have to fetch multiple sets of values from an XML file to
Using php/html, I want to retrieve email addresses (plus other information) from MySQL and
Using Yii, I want to delete all the rows that are not from today.
Using C#, I want to show the image in the Access column but failed
I am using Soap Web services and get response in XML and that Response
Using the C# Facebook SDK 5.0.3 everything works fine whit the client.Get(/me). But when
Using CMake I want to check if a particular function (cv::getGaborKernel) from OpenCV library
Using batch script, I want to get a first token of a line delimited
Using a populated Table Type as the source for a TSQL-Merge. I want to
Using the Redis info command, I am able to get all the stats of

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.