viewController自动播放设置时间,然后切换到下一个viewContrllofer

时间:2012-07-12 05:00:18

标签: iphone ios4 xcode4 nstimer

嗨我希望viewController出现一段时间然后溶解到一个新的viewController。 可能使用nstimer

1 个答案:

答案 0 :(得分:2)

简单的方法是:

[self performSelector:@selector(toNewViewController:) withObject:nil afterDelay:timeInSeconds];

就是这样。您只需编写视图控制器即可在方法toNewViewController中查看控制器转换:。