标签栏。使用事件在 uiviewcontroller 之间切换

发布于 2024-11-30 23:03:48 字数 121 浏览 2 评论 0原文

我有标签栏应用程序。有 5 个选项卡栏项目,每个项目有 5 个 uiviewcontroller。 UIViewController 没有 xib 文件。我可以在它们之间切换,但我需要在切换时执行一些操作。这个动作有什么活动吗?

I have tabbar application. There are 5 tabbar items with 5 uiviewcontrollers for each one. UIViewControllers are without xib files. I can switch between them, but i need to do some action on switching. Is there some event for this action?

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

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

发布评论

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

评论(1

千笙结 2024-12-07 23:03:48

在所有视图控制器中,当您切换到特定视图控制器时,将调用以下方法。

 // inYourViewController.m file
 - (void) viewWillAppear:(BOOL)animated
 {
    //insert your code here
    //EDIT
    [super viewWillAppear:YES];
 }

in all the view controllers, the following method will be called when you switch to that specific view controller.

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