FollowButton.offTap收藏我的收藏
收藏
我的收藏基础库 1.19.0 开始支持本方法,这是一个同步方法。
移除指定的按钮点击监听事件。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
FollowButton.offTap(callback)
参数说明
callback
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
function | 否 | 将要移除的目标回调事件 | 1.19.0 |
返回值
无
代码示例
const followButton = tt.createFollowButton({ type: "image", image: "images/follow-button.png", style: { left: 20, top: 40, width: 150, height: 40, lineHeight: 40, backgroundColor: "#ff0000", textColor: "#ffffff", textAlign: "center", fontSize: 16, borderRadius: 4, borderWidth: 1, borderColor: "#ff0000", }, }); function onTap(res) { const { buttonId, errCode, errMsg } = res; tt.showModal({ title: "关注", content: `关注按钮id:${buttonId}, errCode: ${errCode}, 详细信息:${errMsg}`, }); } followButton.onTap(onTap); followButton.offTap(onTap);
点击纠错