获取验证码按钮

发布于 2021-12-27 11:56:09 字数 1177 浏览 895 评论 0

一个获取验证码,实现倒计时的封装类。
有OC版本和Swift版本,git地址:
https://github.com/ZHShare/XFetchCodeButton.git

// 部分代码
Swift:
let codeButton = XFetchCodeButton(frame: CGRect(x: 20, y: 100, width: 100, height: 50))
codeButton.backgroundColor = .black
codeButton.normalTitle = "Fetch Code"
codeButton.normalTintColor = UIColor.white
self.view.addSubview(codeButton)

codeButton.doneSend {
print("codeButton 已发送")
}
OC:
XFetchCodeButton * button = [[XFetchCodeButton alloc] initWithFrame:CGRectMake(20, 100, 100, 50)];
button.backgroundColor = [UIColor blackColor];
[self.view addSubview:button];

[button doneSend:^{
NSLog(@"button click");
}];

下载地址:http://www.wenjiangs.com/wp-content/uploads/2021/docimg35/f84a92bf78065e7a998c066306cf4cfe.zip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文