我正在开发一个应用程序,我遇到了这个问题。我将如何实现像 youtubes iphone/iPad 应用程序中的键盘背景模糊?我想不通。任何帮助都会很棒!
Best Answer-推荐答案 strong>
将键盘外观属性设置为 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/
|