IOS 遍歷未知物件的屬性和方法

2021-06-22 14:30:51 字數 483 閱讀 2443

/* 注意:要先導入objectc執行時標頭檔案,以便呼叫runtime中的方法*/

#import 

@implementation nsobject (propertylisting)   

1、/* 獲取物件的所有屬性,不包括屬性值 */

- (nsarray *)getallproperties

free(properties);   

return

propertiesarray;

}  2、/* 獲取物件的所有屬性 以及屬性值 */

- (nsdictionary *)properties_aps

free(properties);   

return props;   

}   

3、/* 獲取物件的所有方法 */

-(void)printmothlist

free(mothlist_f);

}@end

IOS 遍歷未知物件的屬性和方法

注意 要先導入objectc執行時標頭檔案,以便呼叫runtime中的方法 import implementation nsobject propertylisting 1 獲取物件的所有屬性,不包括屬性值 nsarray getallproperties free properties retur...

IOS 遍歷未知物件的屬性和方法

注意 要先導入objectc執行時標頭檔案,以便呼叫runtime中的方法 import implementation nsobject propertylisting 1 獲取物件的所有屬性,不包括屬性值 nsarray getallproperties free properties retur...

IOS 遍歷未知物件的屬性和方法

注意 要先導入objectc執行時標頭檔案,以便呼叫runtime中的方法 import implementation nsobject propertylisting 1 獲取物件的所有屬性,不包括屬性值 nsarray getallproperties u int count objc prop...