CAPickerView(视图选择器)

2018-09-08 15:31 更新

类说明

选择器控件,pickerView至少包括一个组件(component),每个组件包括供选择的子项(row)。


基类

CAView,CATableViewDataSource


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

属性
说明
PickerViewDelegate滑动事件代理
PickerViewDataSource数据代理
FontSizeNormal正常状态下的字体大小
FontSizeSelected选中时的字体大小
FontColorNormal正常状态下的字体颜色
FontColorSelected选中时的字体颜色
SeparateColor选中框的边框颜色


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

方法说明
create创建,默认Frame为(0,0,0,0)
createWithFrame创建,并指定其Frame,默认Frame为(0,0,0,0)
createWithCenter创建,并设置其Center,默认Center为(0,0,0,0)
init初始化
onEnter进入
onExit退出
visit访问
initWithFrame初始化,并指定其Frame
initWithCenter初始化,并指定其Center
numberOfComponents获取组件的数量
numberOfRowsInComponent获取指定组件的row的数量
rowSizeForComponent获取指定组件的size
viewForRow获取row
reloadAllComponents刷新所有组件
reloadComponent刷新指定组件
selectRow指定选中的row
selectedRowInComponent获取当前被选中的row
setBackgroundColor设置背景颜色


CAPickerView 属性说明

PickerViewDelegate

类型:CAPickerViewDelegate*

解释:pickerView的选中事件代理,包含一个选中时触发的接口,public get/set{}。


PickerViewDataSource

类型:CAPickerViewDataSource*

解释:pickerView的数据代理,详细接口请参考CAPickerViewDataSource代理类,public get/set{}。


FontSizeNormal

类型:float

解释:备选项的字体大小,public get/set{}。


FontSizeSelected

类型:float

解释:选中项的字体大小,public get/set{}。


FontColorNormal

类型:CAColor4B

解释:备选项的字体颜色,public get/set{}。


FontColorSelected

类型:CAColor4B

解释:选中项的字体颜色,public get/set{}。


SeparateColor

类型:CAColor4B

解释:选框的边框颜色,public get/set{}。


CAPickerView 方法说明

static CAPickerView* create();

返回值:CAPickerView*

参数:

解释:创建,默认Frame为(0,0,0,0)


static CAPickerView* createWithFrame(const DRect& rect);

返回值:CAPickerView*

参数:

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

解释:创建,并指定其Frame,默认Frame为(0,0,0,0)


static CAPickerView* createWithCenter(const DRect& rect);

返回值:CAPickerView*

参数:

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

解释:创建,并设置其Center,默认Center为(0,0,0,0)


virtual bool init();

返回值:bool

参数:

解释:初始化


virtual void onEnter();

返回值:void

参数:

解释:进入


virtual void onExit();

返回值:void

参数:

解释:退出


virtual void visit();

返回值:void

参数:

解释:访问


virtual bool initWithFrame(const DRect& rect);

返回值:bool

参数:

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

解释:初始化,并指定其Frame


virtual bool initWithCenter(const DRect& rect);

返回值:bool

参数:

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

解释:初始化,并指定其Center


virtual int numberOfComponents();

返回值:int

参数:

解释:获取组件的数量


virtual int numberOfComponents()

返回值:int

参数:

解释:返回pickerView中component的数量


virtual int numberOfRowsInComponent(unsigned int component)

返回值:int

参数:

类型
参数说明
unsigned intcomponent指定的component

解释:返回pickerView中component的数量


virtual CCSize rowSizeForComponent(unsigned int component)

返回值:CCSize

参数:

类型
参数说明
unsigned intcomponent指定的component

解释:获取指定组件的size


virtual CAView* viewForRow(unsigned int row, unsigned int component)

返回值:CAView*

参数:

类型
参数说明
unsigned introw指定的row
unsigned int component指定的component

解释:获取row


virtual void reloadAllComponents()

返回值:void

参数:

解释:刷新所有的组件,创建pickerView时必须手动刷新一次pickerView。

示例:

pickerView = CAPickerView::createWithCenter(CCRect(size.width*0.5, size.height*0.5, size.width*0.6, size.height*0.5));
pickerView->setDelegate(this);
pickerView->setDataSource(this);
pickerView->setFontSizeNormal(30 * CROSSAPP_ADPTATION_RATIO);
pickerView->setFontSizeSelected(30 * CROSSAPP_ADPTATION_RATIO);
pickerView->setFontColorNormal(CAColor_blueStyle);
pickerView->setFontColorSelected(CAColor_blueStyle);
pickerView->setSeparateColor(CAColor_blueStyle);
pickerView->reloadAllComponents();
this->getView()->addSubview(pickerView);

virtual void reloadComponent(unsigned int component, bool bReload = true)

返回值:void

参数:

类型
参数说明
unsigned intcomponent指定的component
boolbReload可选参数

解释:刷新指定组件


virtual void selectRow(unsigned int row, unsigned int component, bool animated = false)

返回值:void

参数:

类型
参数说明
unsigned introw指定的row
unsigned intcomponent指定的component
boolanimated可选参数

解释:指定选中的row


virtual int selectedRowInComponent(unsigned int component)

返回值:int

参数:

类型
参数说明
unsigned intcomponent指定的component

解释:获取当前被选中的row


virtual void setBackgroundColor(const CAColor4B& color);    

返回值:void

参数:

类型
参数名说明
CAColor4B&color颜色

解释:设置背景颜色

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号