在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
类说明 选择器控件,pickerView至少包括一个组件(component),每个组件包括供选择的子项(row)。 基类 CAView,CATableViewDataSource CAPickerView 属性(点击查看方法介绍)
CAPickerView 方法(点击查看方法介绍)
CAPickerView 属性说明 类型:CAPickerViewDelegate* 解释:pickerView的选中事件代理,包含一个选中时触发的接口,public get/set{}。 类型:CAPickerViewDataSource* 解释:pickerView的数据代理,详细接口请参考CAPickerViewDataSource代理类,public get/set{}。 类型:float 解释:备选项的字体大小,public get/set{}。 类型:float 解释:选中项的字体大小,public get/set{}。 类型:CAColor4B 解释:备选项的字体颜色,public get/set{}。 类型:CAColor4B 解释:选中项的字体颜色,public get/set{}。 类型:CAColor4B 解释:选框的边框颜色,public get/set{}。 CAPickerView 方法说明 static CAPickerView* create(); 返回值:CAPickerView* 参数: 解释:创建,默认Frame为(0,0,0,0) static CAPickerView* createWithFrame(const DRect& rect); 返回值:CAPickerView* 参数:
解释:创建,并指定其Frame,默认Frame为(0,0,0,0) static CAPickerView* createWithCenter(const DRect& rect); 返回值:CAPickerView* 参数:
解释:创建,并设置其Center,默认Center为(0,0,0,0) 返回值:bool 参数: 解释:初始化 返回值:void 参数: 解释:进入 返回值:void 参数: 解释:退出 返回值:void 参数: 解释:访问 virtual bool initWithFrame(const DRect& rect); 返回值:bool 参数:
解释:初始化,并指定其Frame virtual bool initWithCenter(const DRect& rect); 返回值:bool 参数:
解释:初始化,并指定其Center virtual int numberOfComponents(); 返回值:int 参数: 解释:获取组件的数量 virtual int numberOfComponents() 返回值:int 参数: 解释:返回pickerView中component的数量 virtual int numberOfRowsInComponent(unsigned int component) 返回值:int 参数:
解释:返回pickerView中component的数量 virtual CCSize rowSizeForComponent(unsigned int component) 返回值:CCSize 参数:
解释:获取指定组件的size virtual CAView* viewForRow(unsigned int row, unsigned int component) 返回值:CAView* 参数:
解释:获取row virtual void reloadAllComponents() 返回值:void 参数: 解释:刷新所有的组件,创建pickerView时必须手动刷新一次pickerView。 示例:
virtual void reloadComponent(unsigned int component, bool bReload = true) 返回值:void 参数:
解释:刷新指定组件 virtual void selectRow(unsigned int row, unsigned int component, bool animated = false) 返回值:void 参数:
解释:指定选中的row virtual int selectedRowInComponent(unsigned int component) 返回值:int 参数:
解释:获取当前被选中的row virtual void setBackgroundColor(const CAColor4B& color); 返回值:void 参数:
解释:设置背景颜色 |
请发表评论