Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First I'm so newb to iPhone dev and I'm sorry if this is easy.

Is it possible to change the amount of transparency on the iPhone keyboard (or even the color if that's possible).

I know you can acquire a reference to the keyboard view (link provided) http://www.iphonedevsdk.com/forum/iphone-sdk-tutorials/7350-adding-subviews-custimize-keyboard.html

I found this stackoverflow post which leads me to believe it could be done through an animation. http://stackoverflow.com/questions/630265/iphone-uiview-animation-best-practice

but I have no idea where I would put this code.

Thanks for any thoughts and comments. Everything friendly is appreciated :)

-TK

Thanks for the comments guys. I don't care if it passes the app store though. Just want to try and do it. Thanks again :)

share|improve this question
+1 to link to get the keyboard. Thanks TK! – TamusJRoyce Jan 13 '12 at 20:19

2 Answers

up vote 12 down vote accepted

There's only two styles available in the public API:

[textView setKeyboardAppearance:UIKeyboardAppearanceAlert];
[textView setKeyboardAppearance:UIKeyboardAppearanceDefault];

But you can use private API methods to retrieve the keyboard implementation:

id keyboardImpl = [objc_getClass("UIKeyboardImpl") sharedInstance];

And Make it less opaque,

[keyboardImpl setAlpha:0.8f];

Tint it,

UIView *tint = [[UIView alloc] initWithFrame:[keyboardImpl frame]];
[tint setBackgroundColor:[UIColor colorWithRed:0.0f green:0.0f blue:1.0f alpha:0.3f]];
[tint setUserInteractionEnabled:NO];
[[keyboardImpl superview] insertSubview:tint aboveSubview:keyboardImpl];
[tint release];

Or even flip it:

[[keyboardImpl window] setTransform:CGAffineTransformMakeScale(-1.0f, 1.0f)];

but all will prevent your app from being approved

share|improve this answer
thank you very much – TEEKAY Jun 24 '09 at 1:49

If you can do it, Apple will reject your app because you're hacking into objects that are part of the operating system (not saying I agree with this, but Apple is very particular about people changing the look of their UI).

share|improve this answer
Thanks for the heads up, I'm a far way away from submitting apps though. Do you think it's possible to do? – TEEKAY Jun 23 '09 at 15:51
Paul is right. Apple might not approve the app if it uses a hack or uses private api methods – lostInTransit Jun 23 '09 at 16:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.