IOS Change keyboard color code

Source: Internet
Author: User

This article mainly introduces the iOS change keyboard color code, very simple and practical, the need for small partners can refer to.

IOS changes the keyboard color code

The iphone and ipod Touch's keyboard colors can actually be changed by code to better match the app's interface style, following the code that changes the iphone's keyboard color.

1, only number pad and phone pad These two digital keyboards have effect

2. Set appearance as alert

The code is as follows:

-(void) textfielddidbeginediting: (Uitextfield *) textfield{

Nsarray *WS = [[UIApplication sharedapplication] windows];

For (UIView *w in ws) {

Nsarray *vs = [w subviews];

For (UIView *v in VS) {

if ([[[NSString Stringwithutf8string:object_getclassname (v)] isequaltostring:@ "Uiperipheralhostview"]) {

V.backgroundcolor = [Uicolor Redcolor];

}

}

}

}

The above mentioned is the entire content of this article, I hope you can enjoy.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.