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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:07:26+00:00 2026-06-01T13:07:26+00:00

Is there Hierarchy system in NSMutableData? If so, how do i load information in

  • 0

Is there Hierarchy system in NSMutableData? If so, how do i load information in a hierarchy manner?
Example

//Create path to saving location
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

NSMutableData *gameData;
NSKeyedUnarchiver *decoder;
NSString *documentPath = [documentsDirectory stringByAppendingPathComponent:@"tierSave.dat"];
gameData = [NSData dataWithContentsOfFile:documentPath];
//end

//start loading
    for(NSArray* firstData in gameData){

    decoder = [[NSKeyedUnarchiver alloc] initForReadingWithData:gameData];

    int level1 = [decoder decodeIntegerForKey:level1];
    }
//end

However in for(NSArray* firstData in gameData), the compiler tells me that gameData will not respond to count because it is a NSMutableData instead of NSMutableArray etc, How do i exactly re-implement the code above?

  • 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-01T13:07:27+00:00Added an answer on June 1, 2026 at 1:07 pm

    Saving:

    • Create a NSArray with your multiple NSData
    • Use NSKeyedArchiver to make a NSData from your NSArray

    Loading:

    • Load a NSData from file
    • Use NSKeyedUnarchiver to extract the NSArray
    • Loop your NSArray

    In code:
    NSData *data0 = [NSData data]; // Data 1
    NSData *data1 = [NSData data]; // Data 2

    /////////// SAVE
    // now make a array
    NSArray *array = [NSArray arrayWithObjects:data0, data1, nil];
    
    // now archive the data
    NSData *archivedData = [NSKeyedArchiver archivedDataWithRootObject:array];
    // archivedData contains now a binary plist with your archived array including your NSData objects
    
    [archivedData writeToFile:path atomically:YES];
    
    
    
    /////// LOAD
    NSData *archivedDataFromFile = [NSData dataWithContentsOfFile:path];
    
    NSArray *newArray = [NSKeyedUnarchiver unarchiveObjectWithData:archivedDataFromFile];
    
    NSData *dataLoaded0 = [newArray objectAtIndex:0];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In an OLAP database I work with there is a 'Location' hierarchy consisting of
In an OLAP database I work with there is a 'Location' hierarchy consisting of
Is there a issue tracking system with hierarchy for tasks? It's pretty obvious taht
Ctrl M-L doesn't toggle all the regions in vb.net (2008) when there's a hierarchy
Is there a shortcut key to bring up the call hierarchy of a method
Is there an IDE/Tool/script/something that can show call hierarchy and/or data flow in Scala+Java
Consider this class hierarchy: Book extends Goods Book implements Taxable As we know, there
I have a MySQL database set-up in a hierarchy style. There are 4 tables
In some of our projects, there's an class hierarchy that adds more parameters as
I have this simple exception hierarchy: type FirstLevelException(msg) = inherit System.Exception (msg) type SecondLevelException(msg,

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.