gpt4 book ai didi

iphone - 点击时隐藏导航栏

转载 作者:行者123 更新时间:2023-12-01 19:25:25 25 4
gpt4 key购买 nike

我正在为我的应用制作幻灯片。我想要它几乎像苹果的照片应用程序。几乎完成了一些小问题。我想在屏幕上点击时隐藏导航栏,在再次点击时显示它。但是我不确定该怎么做。

最佳答案

// catch the screen tap and call a method to hide the navigation bar
UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleNavBar:)];
[self.view addGestureRecognizer:gesture];
[gesture release];

- (void)toggleNavBar:(UITapGestureRecognizer *)gesture {
BOOL barsHidden = self.navigationController.navigationBar.hidden;
[self.navigationController setNavigationBarHidden:!barsHidden animated:YES];
}

关于iphone - 点击时隐藏导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8050362/

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