IOS source code to change the color of the keyboard

The following code is the content of the code on the keyboard to change the color of the IOS.

                if([[NSString stringWithUTF8String:object_getClassName(v)] isEqualToString:@"UIPeripheralHostView"]){
                        v.backgroundColor = [UIColor redColor];
                }
        }
}

}

Guess you like

Origin blog.51cto.com/14392512/2407705