unsigned int count = 0;
Ivar *ivars = class_copyIvarList([UITextField class], &count);
for (int i = 0; i < count; i++) {
Ivar ivar = *(ivars + i);
Ivar ivar = ivars[i];
NSLog(@"%s",ivar_getName(ivar));
[self setValue:[UIColor whiteColor] forKeyPath:@"placeholderLabel.textColor"];