UINavigationController 标题已按下
我想知道是否有任何选项可以知道用户是否单击了 UINavigationController 标题。 我的意思是,如果有一个导航控制器且其标题为“Hello”,那么当用户按下“Hello”时我想做一些事情。
谢谢!
I want to know if there any option to know if the user has clicked on the UINavigationController title.
I mean, if there is a navigation controller and its titled "Hello", I want to do something if the user has pressed on the "Hello".
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 UIGestureRecognizer 来实现此目的。更具体地说,UITapGestureRecognizer。
只需将其添加到 UINavigationController 上的 UINavigationBar 即可。
You can use UIGestureRecognizer for this. More specifically UITapGestureRecognizer.
Just add it to the UINavigationBar on the UINavigationController.