博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Swift - 键盘弹出样式
阅读量:5021 次
发布时间:2019-06-12

本文共 1856 字,大约阅读时间需要 6 分钟。

Swift提供了11种键盘类型:

     在开发中,我们可以根据不同的需求,选择不同的键盘样式,例如,当我们只需要输入手机号码时,可以选择纯数字类型的键盘(.NumbersAndPunctuation),当我们需要输入网址时,可以选择URL样式的键盘(.URL),其中,默认的键盘样式(.Default)就是(.NamePhonePad)样式。


我们可以通过输入框的 UIKeyboardType 来设置键盘样式

 UITextField().keyboardType = .NamePhonePad

//

// UIKeyboardType

//

// Requests that a particular keyboard type be displayed when a text widget

// becomes first responder. 

// Note: Some keyboard/input methods types may not support every variant. 

// In such cases, the input method will make a best effort to find a close 

// match to the requested type (e.g. displaying UIKeyboardTypeNumbersAndPunctuation 

// type if UIKeyboardTypeNumberPad is not supported).

//

public enum UIKeyboardType : Int {

    

    case Default // Default type for the current input method.

    case ASCIICapable // Displays a keyboard which can enter ASCII characters, non-ASCII keyboards remain active

    case NumbersAndPunctuation // Numbers and assorted punctuation.

    case URL // A type optimized for URL entry (shows . / .com prominently).

    case NumberPad // A number pad (0-9). Suitable for PIN entry.

    case PhonePad // A phone pad (1-9, *, 0, #, with letters under the numbers).

    case NamePhonePad // A type optimized for entering a person's name or phone number.

    case EmailAddress // A type optimized for multiple email address entry (shows space @ . prominently).

    @available(iOS 4.1, *)

    case DecimalPad // A number pad with a decimal point.

    @available(iOS 5.0, *)

    case Twitter // A type optimized for twitter text entry (easy access to @ #)

    @available(iOS 7.0, *)

    case WebSearch // A default keyboard type with URL-oriented addition (shows space . prominently).

    

    public static var Alphabet: UIKeyboardType { get } // Deprecated

}

下面一图像展示区别

Default

这里写图片描述


NumbersAndPunctuation

这里写图片描述


URL

这里写图片描述


NumberPad

这里写图片描述


PhonePad

这里写图片描述


EmailAddress

这里写图片描述


DecimalPad

这里写图片描述


Twitter

这里写图片描述


WebSearch

这里写图片描述

转载于:https://www.cnblogs.com/gongyuhonglou/p/10311565.html

你可能感兴趣的文章
Android Architecture Components--项目实战
查看>>
洛谷 P1417 烹调方案
查看>>
Android使用 selector 自定义控件背景 (以spinner 为例)
查看>>
列出所有的属性键
查看>>
js获取请求地址后面带的参数
查看>>
[原创]使用java批量修改文件编码(ANSI-->UTF-8)
查看>>
设计模式のCompositePattern(组合模式)----结构模式
查看>>
二进制集合枚举子集
查看>>
磁盘管理
查看>>
SAS学习经验总结分享:篇二—input语句
查看>>
UIImage与UIColor互转
查看>>
RotateAnimation详解
查看>>
系统管理玩玩Windows Azure
查看>>
c#匿名方法
查看>>
如何判断链表是否有环
查看>>
【小程序】缓存
查看>>
ssh无密码登陆屌丝指南
查看>>
codevs 1206 保留两位小数
查看>>
消息提示 Toast Notification
查看>>
vue 引入字体库
查看>>