//首先去githup下载该文件
//然后拖入项目,调用 MZTimerLabel.h 文件
//初始化
MZTimerLabel *timeLabel = [[MZTimerLabel alloc]initWithLabel:需要的label andTimerType:MZTimerLabelTypeTimer];
//字体大小
timeLabel.timaLabel.font = [Font systemFontOfSize:8];
//居中(偏左、偏右和label一样)
timeLabel.timeLabel.textAlignment = NSTextAlignmentCenter;
//字体颜色
timeLabel.timaLabel.textColor = [UIColor BlackColor];
//时间格式
timeLabel.timeFormat:@"ss";
//设置时间
[self.label setCountDownTime:60];
//执行完后回调(可重新执行)
[self.label starWithEndingBlock:^(NSTimeintval countTime){
//执行完后显示的字
self.label.timeLabel.text = @"重新发送";
}];
//要先另外创建一个label,然后设置好属性,设置在发送短信的按钮上,self到主控制器,倒计时self到请求成功里。