我正在开发一个应用程序,我遇到了这个问题。我将如何实现像 youtubes iphone/iPad 应用程序中的键盘背景模糊?我想不通。任何帮助都会很棒!
将键盘外观属性设置为 UIKeyboardAppearanceDark
。
[textField setKeyboardAppearance:UIKeyboardAppearanceAlert];
//
// UIKeyboardAppearance
//
typedef NS_ENUM(NSInteger, UIKeyboardAppearance) {
UIKeyboardAppearanceDefault, // Default apperance for the current input method.
UIKeyboardAppearanceDark NS_ENUM_AVAILABLE_IOS(7_0),
UIKeyboardAppearanceLight NS_ENUM_AVAILABLE_IOS(7_0),
UIKeyboardAppearanceAlert = UIKeyboardAppearanceDark, // Deprecated
};
关于iOS7.1键盘模糊,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22899291/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |