objective-c – 有没有办法在Cocoa / Cocoa Touch中动态确定运行时类的i​​vars?

有没有办法获得像类的所有键值对的字典?

解决方法

你必须使用 Objective-C Runtime functions自己动手.这是一些非常基本的示例代码.请注意,获取类的ivars不会获得其超类的ivars.您需要明确地执行此操作,但函数都在运行时中.
#import <objc/objc-runtime.h>
#include <inttypes.h>
#include <Foundation/Foundation.h>

@interface Foo : NSObject
{
    int i1;
}
@end
@implementation Foo
@end

@interface Bar : Foo
{
    NSString* s1;
}

@end
@implementation Bar
@end

int main(int argc,char** argv)
{
    NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];

    unsigned int count;
    Ivar* ivars = class_copyIvarList([Bar class],&count);
    for(unsigned int i = 0; i < count; ++i)
    {
        NSLog(@"%@::%s",[Bar class],ivar_getName(ivars[i]));
    }
    free(ivars);


    [pool release];
}

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录&lt;future&gt;future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...