为什么80%的码农都做不了架构师?>>>
可以写一个响应时间 在规定的响应时间内 只触发一次
//防止重复点击[[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(todoSomething:) object:btn];[self performSelector:@selector(todoSomething:) withObject:btn afterDelay:1.0];
//点击事件加入介句话
- (void)todoSomething:(UIButton *)btn{ [OMGToast KMShowToast:@"你TM手速真快"];
}