
我当时正在开发一个应用程序,我遇到了这个问题。我如何实现键盘背景模糊,就像youtubes /iPad应用程序中的那样?我搞不懂。任何帮助都是很棒的!
发布于 2014-04-06 21:57:32
将键盘外观属性设置为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
};发布于 2014-04-06 21:56:24
这种效果发生在iOS 7.1SDK的一部分。将您的设备升级到iOS 7.1,将Xcode升级到5.1及以上版本,您将看到它。
要获得更暗的键盘,需要将文本字段或文本视图的keyboardAppearance属性设置为UIKeyboardAppearanceDark。
https://stackoverflow.com/questions/22899291
复制相似问题