ios - iOS7.1 keyboard blur -


enter image description herei developing app , ran issue. how achieve keyboard background blur 1 in youtubes iphone/ipad app? can't figure out. awesome!

set keyboard appearance property uikeyboardappearancedark.

example

[textfield setkeyboardappearance:uikeyboardappearancealert]; 

from documentation

// // uikeyboardappearance // typedef ns_enum(nsinteger, uikeyboardappearance) {     uikeyboardappearancedefault,          // default apperance current input method.     uikeyboardappearancedark ns_enum_available_ios(7_0),     uikeyboardappearancelight ns_enum_available_ios(7_0),     uikeyboardappearancealert = uikeyboardappearancedark,  // deprecated }; 

Comments

Popular posts from this blog

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -