OGeek|极客世界-中国程序员成长平台

标题: iOS7.1键盘模糊 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 07:27
标题: iOS7.1键盘模糊

enter image description here我正在开发一个应用程序,我遇到了这个问题。我将如何实现像 youtubes iphone/iPad 应用程序中的键盘背景模糊?我想不通。任何帮助都会很棒!



Best Answer-推荐答案


将键盘外观属性设置为 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/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4