运行是遍历相应类的成员变量,属性

1.遍历成员变量

//获取成员变量的方法

/**

*  return Ivar *(c方法返回值是Ivar类型的指针数组)

*  value1 Class

* value2 &count 数组的长度 也就是类的成员变量的个数

*/

OBJC_EXPORT Ivar _Nonnull * _Nullable
class_copyIvarList(Class _Nullable cls, unsigned int * _Nullable outCount)
    OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);

// 获取成员变量name的方法

/**

*  return char *(字符串)

*  value1 成员变量Ivar

*/

const char * _Nullable
ivar_getName(Ivar _Nonnull v)

// 获取成员变量type的方法

/**

*  return char *(字符串)

*  value1 成员变量Ivar

*/

OBJC_EXPORT const char * _Nullable
ivar_getTypeEncoding(Ivar _Nonnull v)
    OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);

上代码:

unsigned int outCount = 0;
 Ivar *vars = class_copyIvarList([CopyObject class], &outCount); //指针数组
        for( int i = 0; i < outCount; i ++){
            Ivar ivar = vars[i];
            const char *name = ivar_getName(ivar);
            const char *type = ivar_getTypeEncoding(ivar);
            NSLog( @"类型为 %s --- 名字 %s", type, name );
        }

输出结果:

2018-06-22 10:24:45.607220+0800 Temp[889:13340] 类型为 @"NSString" --- 名字 _name

2.遍历类属性(objc_property_t:是一个指向objc_property结构体的指针)

// 获取属性的方法

/**

*  return objc_property_t _Nonnull * (c方法返回值是objc_property_t(结构体指针)类型的指针数组)

*  value1 Class

* value2 &count 数组的长度 也就是类的成员变量的个数

*/

OBJC_EXPORT objc_property_t _Nonnull * _Nullable
class_copyPropertyList(Class _Nullable cls, unsigned int * _Nullable outCount)
    OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);

// 获取属性的name

/**

*  return char *(字符串)

*  value1 属性objc_property_t (结构体指针)

*/

OBJC_EXPORT const char * _Nonnull
property_getName(objc_property_t _Nonnull property)

/**
 * Returns the attribute string of a property.
 *
 * @param property A property.
 *
 * @return A C string containing the property's attributes.
 *
 * @note The format of the attribute string is described in Declared Properties in Objective-C Runtime Programming Guide.
 */
OBJC_EXPORT const char * _Nullable
property_getAttributes(objc_property_t _Nonnull property)
    OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);

/**
 * Returns an array of property attributes for a property.
 *
 * @param property The property whose attributes you want copied.
 * @param outCount The number of attributes returned in the array.
 *
 * @return An array of property attributes; must be free'd() by the caller.
 */
OBJC_EXPORT objc_property_attribute_t * _Nullable
property_copyAttributeList(objc_property_t _Nonnull property,
                           unsigned int * _Nullable outCount)
    OBJC_AVAILABLE(10.7, 4.3, 9.0, 1.0, 2.0);

代码:

unsigned int propertyPutCount = 0;

objc_property_t *propertys = class_copyPropertyList([CopyObject class], &propertyPutCount);

for (int i = 0; i < propertyPutCount; i ++) {

objc_property_t property = propertys[i];

const char *name = property_getName(property);

const char *attribute = property_getAttributes(property);

NSLog(@"属性的类型是 %s -- 名字 %s", attribute, name);

unsigned int attributeCount = 0;

objc_property_attribute_t *attributes = property_copyAttributeList(property, &attributeCount);

for ( int i = 0; i < attributeCount; i ++) {

objc_property_attribute_t attribute = attributes[i];

const char *name = attribute.name;

const char *value = attribute.value;

NSLog(@"属性的值 %s -- 名字 %s", value, name);

}

}

打印结果:

2018-06-22 11:20:54.989967+0800 Temp[1198:42007] 属性的类型是 T@"NSString",&,N,V_name -- 名字 name

2018-06-22 11:20:54.990084+0800 Temp[1198:42007] 属性的值 @"NSString" -- 名字 T

2018-06-22 11:20:54.990200+0800 Temp[1198:42007] 属性的值 -- 名字 & 2018-06-22 11:20:54.990290+0800 Temp[1198:42007] 属性的值 -- 名字 N 2018-06-22 11:20:54.990400+0800 Temp[1198:42007] 属性的值 _name -- 名字 V

3.遍历方法

OBJC_EXPORT Method _Nonnull * _Nullable

class_copyMethodList(Class _Nullable cls, unsigned int * _Nullable outCount)

    OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);

和上面两个类似的方法,自行查看文档处理

你可能感兴趣的:(运行是遍历相应类的成员变量,属性)