codecamp

CATextFieldDelegate

类说明

CATextField的数据代理


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

方法说明
textFieldShouldBeginEditing开始编辑时触发
textFieldShouldEndEditing结束编辑时触发
textFieldShouldReturn返回时触发
keyBoardHeight键盘高度
textFieldShouldChangeCharacters文字更改后触发


CATextFieldDelegate 方法说明

virtual bool textFieldShouldBeginEditing(CATextField * sender)

返回值:bool

参数:

类型参数名说明
CATextField*sender当前textField

解释:开始编辑时触发


virtual bool textFieldShouldEndEditing(CATextField * sender)

返回值:bool

参数:

类型参数名说明
CATextField*sender当前textField

解释:结束编辑时触发(如果发件人不想从时间中分离,返回true)


virtual void textFieldShouldReturn(CATextField *sender){}

返回值:void

参数:

类型参数名说明
CATextField*sender当前textField

解释:返回时触发


virtual void keyBoardHeight(CATextField *sender, int height){}

返回值:void

参数:

类型参数名说明
CATextField*sender当前textField
intheight高度

解释:键盘高度


virtual bool textFieldShouldChangeCharacters(CATextField* sender, unsigned int location, unsigned int lenght, const std::string& changedText);

返回值:bool

参数:

类型参数名说明
CATextField*sender当前textField
unsigned int location光标选中的字符串,即被替换的字符串
unsigned intlenghtlength为0时,表示删除
const std::string&changedText更改文本时Text内容

解释:textField文字更改后触发(返回true表示修改生效,返回false表示不做修改,textField的内容不变)

CATextField(输入框)
CAAutoCollectionView(自动化布局容器)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

四、调用系统支持

八、宏定义

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }