向UIButton添加延迟

时间:2011-06-22 20:22:15

标签: button view delay

  

可能重复:
  How to make a static image appear after 3 seconds?

我希望能够按下按钮,3秒后它将切换到下一个视图。使用Objective C,iOS,xcode4。

2 个答案:

答案 0 :(得分:0)

[NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(myMethod) userInfo:nil repeats:NO];

...当然替换选择器的方法名称。

答案 1 :(得分:0)

单击按钮时可以启动计时器。它应该在Button

的事件处理程序中实现

NSTimer Class Refernce