zoukankan      html  css  js  c++  java
  • iOS键盘类型最全

    一、键盘风格  

    UIKit框架支持8种风格键盘。

      1. typedef enum {  
      2.     UIKeyboardTypeDefault,                // 默认键盘:支持所有字符   
      3.     UIKeyboardTypeASCIICapable,           // 支持ASCII的默认键盘   
      4.     UIKeyboardTypeNumbersAndPunctuation,  // 标准电话键盘,支持+*#等符号   
      5.     UIKeyboardTypeURL,                    // URL键盘,有.com按钮;只支持URL字符   
      6.     UIKeyboardTypeNumberPad,              //数字键盘   
      7.     UIKeyboardTypePhonePad,               // 电话键盘   
      8.     UIKeyboardTypeNamePhonePad,           // 电话键盘,也支持输入人名字   
      9.     UIKeyboardTypeEmailAddress,           // 用于输入电子邮件地址的键盘   
      10. } UIKeyboardType; 

    用法用例:

    textView.keyboardtype= UIKeyboardTypeNumberPad;

    UIKeyboardTypeDefault:

    UIKeyboardTypeASCIICapable:

    UIKeyboardTypeNumbersAndPunctuation:

    UIKeyboardTypeURL:

    UIKeyboardTypeNumberPad:

    UIKeyboardTypePhonePad:

    UIKeyboardTypeNamePhonePad:

    UIKeyboardTypeEmailAddress:

    UIKeyboardTypeDecimalPad:

    UIKeyboardTypeTwitter:

    UIKeyboardTypeWebSearch:

    UIKeyboardTypeAlphabet:

  • 相关阅读:
    用户控件
    垃圾弟弟
    如何解决“呈现控件时出错”的问题
    IE与FireFox差距
    NavigateUrl属性绑定
    table
    firefox不支持attachEvent,attach
    转 jQuery分类 
    GridView列数字、货币和日期的显示格式
    appendChild
  • 原文地址:https://www.cnblogs.com/OIMM/p/5203262.html
Copyright © 2011-2022 走看看