iphone - iOS4如何重启 View Controller
<p><p>我希望重新启动 ViewController 。</p>
<p>我所做的是将当前 ViewController 从导航堆栈中弹出,并将 ViewController 的新实例推送到堆栈上。
但是,这不起作用。当前 ViewController 从导航堆栈中弹出,但新实例并未插入堆栈。</p>
<p>这是我的代码片段:</p>
<pre><code>[ popViewControllerAnimated:YES];
VideoPlayerViewController *videoPlayer = [ init];
;
[ pushViewController:videoPlayer animated:YES];
;
videoPlayer = nil;
NSLog(@"Restarting view controller...");
</code></pre>
<p>知道可能出了什么问题吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据您的代码,您似乎正在尝试弹出当前 ViewController ,然后立即重新推送它,并在两个方向上显示动画。我无法想象你为什么要这样做,但暂时把它放在一边,这就是你如何让它发挥作用的方法。 </p>
<p>首先,将 <code><UINavigationControllerDelegate></code> 添加到您的 @interface 声明中。那么:</p>
<pre><code>- (void)repushViewController {
self.navigationController.delegate = self;
[ popViewControllerAnimated:YES];
}
- (void)navigationController:(UINavigationController *)navController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
navController.delegate = nil;
VideoPlayerViewController *videoPlayer = [ init];
;
;
;
}
</code></pre></p>
<p style="font-size: 20px;">关于iphone - iOS4如何重启 ViewController ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/6705204/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/6705204/
</a>
</p>
页:
[1]