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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:56:17+00:00 2026-06-06T21:56:17+00:00

I’m trying to learn objective-c. I’m trying to parse a binary file doing the

  • 0

I’m trying to learn objective-c. I’m trying to parse a binary file doing the following (simplified):

@interface DatFile : NSObject {
    NSData* _data;
}

-(id)initWithFilePath:(NSString *)filePath;

-(void) readFile;

-(void) auxiliaryMethod;



@implementation DatFile

- (id) initWithFilePath:(NSString *)filePath {
    if ( self = [super init] ) {
        _data = [NSData dataWithContentsOfFile:filePath];
    }
    return self;
}

-(void) readFile {
    int header;
    [_data getBytes: &header range: NSMakeRange(0, 4)];    
    NSLog(@"header: %u", header);

    short key;
    [_data getBytes: &key range: NSMakeRange(4, 2)];
    NSLog(@"key: %u", key);

    short value;
    [_data getBytes: &value range: NSMakeRange(6, 1)];
    NSLog(@"value: %u", value);

    [self auxiliaryMethod];
}

-(void) auxiliaryMethod {
    short value;
    [_data getBytes: &value range: NSMakeRange(6, 1)];
    NSLog(@"value: %u", value);
}

My problem is that the code inside the auxiliaryMethod does not compute the same value computed by readFile method. Since the _data object is the same, why the method are computing different values? And, as you can see, the logic inside the auxiliaryMethod is just a copy of the other one…

In other languages (java) I usually separate some logic in smaller methods in order to make the code mode readable/maintainable. This is why I’m trying to mimic it with ObjC.

Of course that probably missing something, but after some hours, I gave up. I don’t see where is my mistake. Probably I should erase my project and start it again…

TIA,

Bob

  • 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-06T21:56:19+00:00Added an answer on June 6, 2026 at 9:56 pm

    %u is for printing a 32 bit unsigned value. A short is 16 bits. Therefore, you are printing the parsed value plus some stack garbage.

    Try %hu; the h modifies %u to print a short value.


    If that doesn’t work:

    • make sure your data objects are the same between the two methods
      (don’t see how they can’t be… but…)
    • show the actual values printed
    • decode into an unsigned long that is explicitly initialized to 0 before decoding

    With this kind of bug, it is pretty much guaranteed it is either that you aren’t dealing with the input you think you are or you are dealing with some C-ism related to data types and the implied conversions in this kind of code.

    I.e. assuming _data is consistent, then it indicates that the code you think is working is not actually working, but only appearing to by coincidence.

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

Sidebar

Related Questions

I am trying to render a haml file in a javascript response like so:
i want to parse a xhtml file and display in UITableView. what is the
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am doing a simple coin flipping experiment for class that involves flipping a
I have a French site that I want to parse, but am running into

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.