为什么 viewWillDisAppear 没有在详细视图中被调用?

发布于 2024-08-15 06:59:54 字数 169 浏览 2 评论 0原文

我想很多人都面临着同样的问题。

在详细视图中,即点击主视图中的单元格会带您进入详细信息,当我在导航栏中点击后退按钮时,viewWillDisAppear 不会被调用,因为我想删除一些键盘隐藏并显示观察者。

那么,在视图消失时,我保证 viewWillDisAppear 将被执行的方式是什么。

I think lot of people are facing the same problem .

In detail view i.e tapping on cell in main view takes you to the detail when in navigation bar I tapp the back button the viewWillDisAppear is not being called as I want to remove some keyboard hide and show observers .

So what is the way that at the time of view disappearing I assure the viewWillDisAppear will be executed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北座城市 2024-08-22 06:59:54

在您描述的情况下,听起来确实应该调用它。我的第一个猜测是你没有覆盖正确的函数。确保方法签名完全匹配(空格可以忽略,大小写必须匹配):

- (void) viewWillDisappear:(BOOL)animated {
  //...

In the case you describe, it certainly sounds like it should be called. My first guess would be that you're not overriding the right function. Make sure the method signature matches exactly (spaces can be ignored, capitalization must match):

- (void) viewWillDisappear:(BOOL)animated {
  //...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文