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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:28:07+00:00 2026-05-26T09:28:07+00:00

Is it possible to add properties to an Objective C object at runtime?

  • 0

Is it possible to add properties to an Objective C object at runtime?

  • 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-05-26T09:28:07+00:00Added an answer on May 26, 2026 at 9:28 am

    It’s possible to add formal properties to a class via class_addProperty():

    BOOL class_addProperty(Class cls,
        const char *name,
        const objc_property_attribute_t *attributes,
        unsigned int attributeCount)
    

    The first two parameters are self-explanatory. The third parameter is an array of property attributes, and each property attribute is a name-value pair which follow Objective-C type encodings for declared properties. Note that the documentation still mentions the comma-separated string for the encoding of property attributes. Each segment in the comma-separated string is represented by one objc_property_attribute_t instance. Furthermore, objc_property_attribute_t accepts class names besides the generic @ type encoding of id.

    Here’s a first draft of a program that dynamically adds a property called name to a class that already has an instance variable called _privateName:

    #include <objc/runtime.h>
    #import <Foundation/Foundation.h>
    
    @interface SomeClass : NSObject {
        NSString *_privateName;
    }
    @end
    
    @implementation SomeClass
    - (id)init {
        self = [super init];
        if (self) _privateName = @"Steve";
        return self;
    }
    @end
    
    NSString *nameGetter(id self, SEL _cmd) {
        Ivar ivar = class_getInstanceVariable([SomeClass class], "_privateName");
        return object_getIvar(self, ivar);
    }
    
    void nameSetter(id self, SEL _cmd, NSString *newName) {
        Ivar ivar = class_getInstanceVariable([SomeClass class], "_privateName");
        id oldName = object_getIvar(self, ivar);
        if (oldName != newName) object_setIvar(self, ivar, [newName copy]);
    }
    
    int main(void) {
        @autoreleasepool {
            objc_property_attribute_t type = { "T", "@\"NSString\"" };
            objc_property_attribute_t ownership = { "C", "" }; // C = copy
            objc_property_attribute_t backingivar  = { "V", "_privateName" };
            objc_property_attribute_t attrs[] = { type, ownership, backingivar };
            class_addProperty([SomeClass class], "name", attrs, 3);
            class_addMethod([SomeClass class], @selector(name), (IMP)nameGetter, "@@:");
            class_addMethod([SomeClass class], @selector(setName:), (IMP)nameSetter, "v@:@");
    
            id o = [SomeClass new];
            NSLog(@"%@", [o name]);
            [o setName:@"Jobs"];
            NSLog(@"%@", [o name]);
        }
    }
    

    Its (trimmed) output:

    Steve
    Jobs
    

    The getter and setter methods should be written more carefully but this should be enough as an example of how to dynamically add a formal property at runtime.

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

Sidebar

Related Questions

Is it possible to add a custom tab to a project properties page in
Is it possible to add attributes at runtime or to change the value of
Is it possible to add checkboxes to the WPF TreeView object? I'd like to
Is it possible to modify a .properties file in Tomcat, that is to add
Is it possible to add user-defined properties to the My.Application or My.User objects? I've
I would like to dynamically add properties to a ExpandoObject at runtime. So for
I want to know if it is possible to add properties to the event
I know it's possible to add methods and properties to discriminated unions, but can
Is it possible to add properties to my model that dont exist in the
Is it possible to add some kind of properties to a Wordpress page? In

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.