iphone - 检测当前显示的 UIkeyboard 类型?

标签 iphone ios ios4

我需要知道当前正在显示的 uikeyboard 的类型。

有什么办法可以找到这个吗?我搜索了这个,但仍然没有找到任何解决方案。

请告诉我

最佳答案

如果您使用 UITextfield,您可以使用“keyboardType”属性获取此信息:

textField.keyboardType

苹果文档:

typedef enum {
UIKeyboardTypeDefault,                // Default type for the current input method.
UIKeyboardTypeASCIICapable,           // Displays a keyboard which can enter ASCII characters, non-ASCII keyboards remain active
UIKeyboardTypeNumbersAndPunctuation,  // Numbers and assorted punctuation.
UIKeyboardTypeURL,                    // A type optimized for URL entry (shows . / .com prominently).
UIKeyboardTypeNumberPad,              // A number pad (0-9). Suitable for PIN entry.
UIKeyboardTypePhonePad,               // A phone pad (1-9, *, 0, #, with letters under the numbers).
UIKeyboardTypeNamePhonePad,           // A type optimized for entering a person's name or phone number.
UIKeyboardTypeEmailAddress,           // A type optimized for multiple email address entry (shows space @ . prominently).
#if __IPHONE_4_1 <= __IPHONE_OS_VERSION_MAX_ALLOWED
UIKeyboardTypeDecimalPad,             // A number pad with a decimal point.
#endif
#if __IPHONE_5_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
UIKeyboardTypeTwitter,                // A type optimized for twitter text entry (easy access to @ #)
#endif

UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable, // Deprecated

} UIKeyboardType;

关于iphone - 检测当前显示的 UIkeyboard 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8787933/

相关文章:

ios - 使用 FBSDKShareLinkContent 无法在 iOS 9 中共享文本

ios - 按 NULL NSDates 对 NSFetchedResultsController 进行排序

ios - 同时使用 TableFooterView 和行操作时 TableView 分隔符的奇怪行为

ios - MPMusicPlayerController 在 iOS 6 中被弃用

ios - 广告横幅内容大小会使设备崩溃?

iphone - 是否可以将 AVAssetWriter 路由到 iOS4 中的网络流?

iphone - 我无法在我的设备上摇晃/运动

iphone - 如何在 xCode 4.2 中添加 Entitlement.plist

iphone - 在 Facebook 中注销

iphone - 是否可以缩短临时构建配置文件过期之前的时间?