Iphone Keyboard Transparency - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:59:34Zhttp://stackoverflow.com/feeds/question/1033406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1033406/iphone-keyboard-transparency0Iphone Keyboard TransparencyTEEKAY2009-06-23T15:43:12Z2009-06-24T01:04:15Z
<p>First I'm so newb to iPhone dev and I'm sorry if this is easy.</p>
<p>Is it possible to change the amount of transparency on the iPhone keyboard (or even the color if that's possible).</p>
<p>I know you can acquire a reference to the keyboard view (link provided)
<a href="http://www.iphonedevsdk.com/forum/iphone-sdk-tutorials/7350-adding-subviews-custimize-keyboard.html" rel="nofollow">http://www.iphonedevsdk.com/forum/iphone-sdk-tutorials/7350-adding-subviews-custimize-keyboard.html</a></p>
<p>I found this stackoverflow post which leads me to believe it could be done through an animation.
<a href="http://stackoverflow.com/questions/630265/iphone-uiview-animation-best-practice">http://stackoverflow.com/questions/630265/iphone-uiview-animation-best-practice</a></p>
<p>but I have no idea where I would put this code.</p>
<p>Thanks for any thoughts and comments. Everything friendly is appreciated :)</p>
<p>-TK</p>
<p><strong>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 :)</strong></p>
http://stackoverflow.com/questions/1033406/iphone-keyboard-transparency/1033428#10334280Answer by Paul Betts for Iphone Keyboard TransparencyPaul Betts2009-06-23T15:46:08Z2009-06-23T15:46:08Z<p>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).</p>
http://stackoverflow.com/questions/1033406/iphone-keyboard-transparency/1036005#10360057Answer by rpetrich for Iphone Keyboard Transparencyrpetrich2009-06-24T01:04:15Z2009-06-24T01:04:15Z<p>There's only two styles available in the public API:</p>
<pre><code>[textView setKeyboardAppearance:UIKeyboardAppearanceAlert];
[textView setKeyboardAppearance:UIKeyboardAppearanceDefault];
</code></pre>
<p>But you can use private API methods to retrieve the keyboard implementation:</p>
<pre><code>id keyboardImpl = [objc_getClass("UIKeyboardImpl") sharedInstance];
</code></pre>
<p>And Make it less opaque,</p>
<pre><code>[keyboardImpl setAlpha:0.8f];
</code></pre>
<p>Tint it,</p>
<pre><code>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];
</code></pre>
<p>Or even flip it:</p>
<pre><code>[[keyboardImpl window] setTransform:CGAffineTransformMakeScale(-1.0f, 1.0f)];
</code></pre>
<p><sub>but all will prevent your app from being approved</sub></p>