ios
일정 시간 지연후 실행
carbo
2016. 12. 19. 10:22
-(IBAction)buttonPressed:(UIButton *) sender {
[self performSelector:@selector(addCoins) withObject:nil afterDelay:30];
}
-(void)addCoins {
//put whatever code you want to happen after the 30 seconds
}