CATextField(输入框)

2018-09-08 15:35 更新

类说明

CATextField是单行输入框控件。主要接收用户的文本输入,多用于用户名、密码、聊天输入等。


CATextField 属性(点击查看方法介绍)

属性说明
Delegate数据代理
ClearButtonMode添加按钮模式
MarginLeft左边缘
MarginRight右边缘
FontSize字体大小
PlaceHolderTextPlaceHolder文本内容
PlaceHolderColorPlaceHolder文本内容颜色
Text文本内容
TextColor文本内容颜色
KeyboardType键盘类型
ReturnTypeReturn键类型
TextFieldAlignTextField的对齐方式
SecureTextEntry设置TextField为密码输入框
AllowkeyBoardHide返回键恢复键盘
MaxLenght最大长度


CATextField 方法(点击查看方法介绍)

方法说明
resignFirstResponder隐藏键盘第一响应者状态
becomeFirstResponder弹出键盘第一响应者状态
createWithFrame创建,并指定其Frame
createWithCenter创建,并设置其Center
init初始化
setMarginImageLeft设置左边缘图像
setMarginImageRight设置右边缘图像
setBackgroundImage设置背景图像


CATextField 属性说明

Delegate

类型:CATextFieldDelegate*

解释:数据代理,set/get{}。


ClearButtonMode

类型:ClearButtonMode

解释:添加按钮模式,set/get{}。

typedef enum
{
    None = 0,     //正常模式,不添加按钮
    WhileEditing  //添加清除按钮
}ClearButtonMode;

MarginLeft

类型:int

解释:左边缘(如果选择默认:左16,右16),set/get{}。


MarginRight

类型:int

解释:右边缘(如果选择默认:左16,右16),set/get{}。


FontSize

类型:int

解释:字体大小,set/get{}。


PlaceHolderText

类型:std::string

解释:PlaceHolder文本内容,set/get{}。


PlaceHolderColor

类型:CAColor4B

解释:PlaceHolder文本内容颜色,set/get{}。


Text

类型:std::string

解释:文本内容,set/get{}。


TextColor

类型:CAColor4B

解释:文本内容颜色,set/get{}。


KeyboardType

类型:KeyboardType

解释:键盘类型,set/get{}。(默认为KeyboardTypeDefault类型)

typedef enum
{
    Default = 0,
    NumbersAndPunctuation,
    URL,
    NumberPad,
    PhonePad,
    NamePhonePad,
    EmailAddress,
}KeyboardType;


ReturnType

类型:ReturnType

解释:Return键类型,set/get{}。(默认ReturnTypeDone类型)

typedef enum
{
    Done=0,
    Go,
    Next,
    Search,
    Send
}ReturnType;


TextFieldAlign

类型:TextFieldAlign

解释:TextField的对齐方式,set/get{}。(默认:中心)

typedef enum 
{
    Left,
    Center,
    Right
}TextFieldAlign;

SecureTextEntry

类型:bool

解释:设置TextField为密码输入框,is/set{}。(密码输入框,默认为假)


AllowkeyBoardHide

类型:bool

解释:返回键恢复键盘,is/set{}。(返回键恢复键盘,默认为真)


MaxLenght

类型:int

解释:最大长度,set/get{}。


CATextField 方法说明

virtual bool resignFirstResponder();

返回值:bool

参数:

解释:隐藏键盘第一响应者状态


virtual bool becomeFirstResponder();

返回值:bool

参数:

解释:弹出键盘第一响应者状态


static CATextField* createWithFrame(const DRect& frame);

返回值:CATextField*

参数:

类型参数名说明
const DRect&frame区域大小

解释:创建,并指定其Frame


static CATextField* createWithCenter(const DRect& rect);

返回值:CATextField*

参数:

类型参数名说明
const DRect&rect中心点的位置及大小

解释:创建,并设置其Center


bool init();

返回值:bool

参数:

解释:初始化


void setMarginImageLeft(const DSize& imgSize,const std::string& filePath);

返回值:void

参数:

类型参数名说明
const DSize&imgSize图像大小
const std::string& filePath图像路径

解释:设置左边缘图像


void setMarginImageRight(const DSize& imgSize,const std::string& filePath);

返回值:void

参数:

类型参数名说明
const DSize&imgSize图像大小
const std::string& filePath图像路径

解释:设置右边缘图像


void setBackgroundImage(CAImage* image);

返回值:void

参数:

类型参数名说明
CAImage*image图像

解释:设置背景图像


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号