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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:10:42+00:00 2026-06-01T04:10:42+00:00

I may be phrasing the question incorrectly based on my situation – sorry if

  • 0

I may be phrasing the question incorrectly based on my situation – sorry if that’s the case.

Here’s the issue: In a previous version of my app, I’m saving an NSMutableArray to a plist using NSCoding.

In a new version, I’ve added settings data, so I now put the previous array and the new data in an NSDictionary then use NSCoding. Works fine.

However, for this release, I’ll have to determine if an existing plist is the old version (NSMutableArray) or the new one (NSDictionary).

The basic code is this:

NSData *codedData=[[NSData alloc] initWithContentsOfFile:plistPath];
//EITHER this (array):    allMsgs=[NSKeyedUnarchiver unarchiveObjectWithData:codedData];
//OR this (nsdict):       tmpdict=(NSDictionary *)[NSKeyedUnarchiver unarchiveObjectWithData:codedData];

How can I read the plist and determine if it’s an NSDictionary or NSMutableArray without throwing errors?

  • 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-01T04:10:43+00:00Added an answer on June 1, 2026 at 4:10 am

    Just store the unarchived object as an id, then use isKindOfClass: to check its class:

    id unarchivedObject = [NSKeyedUnarchiver unarchiveObjectWithData:codedData];
    if ([unarchivedObject isKindOfClass:[NSArray class]]) {
        // do something
    } else if ([unarchivedObject isKindOfClass:[NSDictionary class]]) {
        // do something else
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Objective-C, so I may be phrasing this incorrectly. I've created a
The phrasing of the title may be a little confusing. I have an app
I may be misinterpreting the exact phrasing on the question about which I've been
May be a silly question, but what's a class called that inherits from NSManagedObject?
May be my question is dumb but here it is. Is Covariance and contravariance
May be this question is too easy or I did not know how easy
May be a dirty question. Is there a simpler way in C# code to
May be a simple question, but if I have a ModelForm: class ExampleModelForm(forms.ModelForm): class
May be the question is already answered in a way or in another in
may i know can we specify url for http-basic so that only authenticate if

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.