gpt4 book ai didi

ios - 检测后退按钮是否按下问题 - GLKViewController

转载 作者:行者123 更新时间:2023-11-29 03:27:03 25 4
gpt4 key购买 nike

我正在尝试检测用户何时按下 GLKViewController 中的后退按钮。 View Controller 通过 Root View Controller (它是一个菜单)的 Storyboard呈现。

问题是我无法检测到后退按钮何时被按下(因此我可以释放内存)。

我试过了:

if (self.isMovingFromParentViewController) {
// Do your stuff here
NSLog(@"Dismissed");
}

if (self.isBeingDismissed) {
// Do your stuff here
NSLog(@"Dismissed");
}

两者都不会触发。任何人都可以提出原因吗?

最佳答案

您可以对 BackButton 执行您自己的操作:

[self.navigationItem.backBarButtonItem setAction:@selector(action:)];

-(void) action:(id)sender {

//do something here

[self.navigationController popViewControllerAnimated:YES];

}

关于ios - 检测后退按钮是否按下问题 - GLKViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20324976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com