获取验证码按钮
一个获取验证码,实现倒计时的封装类。
有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论