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

  • Home
  • SEARCH
  • 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 8835049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:10:14+00:00 2026-06-14T09:10:14+00:00

In NSCoder, you can call encodeObject: and encodeObject:forkey: . And this for many data

  • 0

In NSCoder, you can call encodeObject: and encodeObject:forkey:. And this for many data types. What is the difference beetween those calls? How to use them? Why isn’t there a encodeDataObject:forkey: or encodePropertyList:forKey:?

  • 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-14T09:10:15+00:00Added an answer on June 14, 2026 at 9:10 am

    Keyed vs. Unkeyed Accessors

    Most of the time you just call the encodeSomething:forKey: method and supply a key that you later use to get the value back from a decoder:

    - (void) encodeWithCoder: (NSCoder*) coder
    {
        [coder encodeObject:someProperty forKey:@"someProperty"];
    }
    
    - (id) initWithCoder: (NSCoder*) decoder
    {
        self = [super init];
        if (self) {
            [self setSomeProperty:[decoder decodeObjectForKey:@"someProperty"]];
        }
        return self;
    }
    

    The unkeyed version of the call is older, I guess that serialization used to work differently back before 10.2.

    Specialized Object Accessors

    There isn’t a separate encodeDataObject: call since NSData conforms to NSCoding, so that you can encode it using regular encodeObject:. The same applies to property lists – a property list is just a dictionary, and a dictionary is a regular object that can be encoded using encodeObject:.

    What maybe got you confused is the number of specialized methods for encoding primitive types like BOOL or NSUInteger. These have to do with the type system. When encoding and decoding objects, the interface can use the id type and it works regardless of the particular object type:

    // can pass NSObject*, NSData*, any object
    - (void) encodeObject: (id) anObject {…}
    - (id) decodeObject {…}
    

    There is no such general, “wildcard” type for primitive types, therefore the number of specialized getters and setters:

    - (void) encodeBool: (BOOL) flag {…}
    - (BOOL) decodeBool {…}
    

    Theoretically you could use void* and cast, but that’s clumsy and the encoding interface wouldn’t know the size of the object to encode anyway.

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

Sidebar

Related Questions

From the documentation of a bound API I'm using: overrideClassNames Use this to use
why can this code not access 'borderWidth' (iphone code attached) This is based on
I understand that you generally serialize objects for data persistence using the NSCoder protocol
is there a C#/.NET library or otherwise existing code that can read persisted data
So I have a project that uses the old-style encodeObject:/decodeObject NSCoder serialization. I need
I'm trying to figure out how to decide when to use NSDictionary or NSCoder/NSCoding?
I was wondering whether or not it is possible to use the NSCoder method:
I am trying to use NSCoder to archive a custom object (my object is
I have the following method in my UIButton class: - (id)initWithCoder:(NSCoder *)aDecoder{ self =
I'm facing a strange problem with NSUsrDefaults. Whenever I'm fetching the data from NSUserDefaults,

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.