CABarButtonItem

2018-09-10 16:10 更新

类说明

自定义导航栏按钮,辅助navigationBarItem的功能实现。


基类

CABarItem


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

属性说明
HighlightedImage高亮时的图像
ItemWidth项目宽度
CustomView自定义视图


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

属性说明
create创建,指定标题、图像和按钮点击时的图像
init初始化,指定标题、图像和按钮点击时的图像,默认图像和按钮点击时的图像为NULL
initWithTitle初始化标题,指定标题、图像和按钮点击时的图像,默认图像和按钮点击时的图像为NULL
initWithImage初始化图像,指定图像和高亮时的图像,默认高亮时的图像为NULL
initWithCustomView初始化图像,指定图像和按钮点击时的图像,默认按钮点击时的图像为NULL
setTarget设置回调函数
getTarget获取回调函数
getSel获取SEL


CABarButtonItem 属性说明

HighlightedImage

类型:CAImage*

解释:点击按钮时,高亮状态的图片。set/get{}。


ItemWidth

类型:unsigned int

解释:项目宽度,set/get{}。


CustomView

类型:CAView*

解释:自定义视图,get{}。


CABarButtonItem 方法说明

static CABarButtonItem* create(const std::string& title, CAImage* image, CAImage* highlightedImage);

返回值:CABarButtonItem*

参数:

类型参数名说明
const std::string&title标题
CAImage*image图像
CAImage* highlightedImage

按钮点击时的图像

解释:创建,指定标题、图像和按钮点击时的图像


bool init(const std::string& title, CAImage* image = NULL, CAImage* highlightedImage = NULL)

返回值:bool

参数:

类型参数名说明
const std::string&title标题
CAImage*image图像
CAImage* highlightedImage

按钮点击时的图像

解释:初始化,指定标题、图像和按钮点击时的图像,默认图像和按钮点击时的图像为NULL


bool initWithTitle(const std::string& title, CAImage* image = NULL, CAImage* highlightedImage = NULL);

返回值:bool

参数:

类型参数名说明
const std::string&title标题
CAImage*image图像
CAImage* highlightedImage

按钮点击时的图像

解释:初始化标题,指定标题、图像和按钮点击时的图像,默认图像和按钮点击时的图像为NULL


bool initWithImage(CAImage* image, CAImage* highlightedImage = NULL);

返回值:bool

参数:

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

按钮点击时的图像

解释:初始化图像,指定图像和按钮点击时的图像,默认按钮点击时的图像为NULL


bool initWithCustomView(CAView* customView);

返回值:bool

参数:

类型参数名说明
CAView*customView自定义图像

解释:初始化自定义图像,指定自定义图像


void setTarget(CAObject* target, SEL_CAControl callfunc);

返回值:void

参数:

类型参数名说明
CAObject* target当前对象
SEL_CAControl callfunc函数回调器

解释:为按钮添加一个点击事件


CAObject* getTarget();

返回值:CAObject*

参数:

解释:获取回当前对象


SEL_CAControl getSel();

返回值:SEL_CAControl

参数:

解释:获取按钮点击事件的回调函数器

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号