1,使用延遲觸發(fā)函數(shù)
//button的點(diǎn)擊方法
-(IBAction)tipButton:(UIButton *)sender {
//延遲執(zhí)行函數(shù)尔苦,兩個(gè)方法要配合著使用流码,而且object必須相同署惯,先取消之前執(zhí)行方法,再去執(zhí)行該方法
//取消上次執(zhí)行
[[self class]cancelPreviousPerformRequestsWithTarget:self selector:@selector(tapbuttonAction) object:sender];
//延遲執(zhí)行
[self performSelector:@selector(tapbuttonAction) withObject:sender afterDelay:1];
}
//要處理的事件
-(void)tapbuttonAction{
NSLog(@"點(diǎn)擊button的時(shí)間镣隶。 %@",[NSDate date]);
}