1.最直接的方法performSelector:withObject:afterDelay: 这种方法的缺点:每次要为延时写一个方法
[self performSelector:@selector(chooseJump) withObject:nil afterDelay:1.5f];
实现chooseJump方法,延时1.5s在做完chooseJump方法后
iOS开发延时操作
原文:http://www.cnblogs.com/HHB17/p/4219571.html