gpt4 book ai didi

ios - 如何能够响应导航项标题上的点击?

转载 作者:行者123 更新时间:2023-11-28 11:41:55 24 4
gpt4 key购买 nike

我想添加一个类似 UITapGesture 的东西,当你点击标题时它会转到另一个 Controller 。我认为 UITapGesture 仅适用于 UIView,但我希望它适用于文本(字符串)。

@objc func checkIfUserIsLoggedIn(){
if Auth.auth().currentUser?.uid == nil {
perform(#selector(viewController.handleLogout), with: nil, afterDelay: 0)
} else {
let uid = Auth.auth().currentUser?.uid
Database.database().reference().child("Users").child(uid!).observe(.value, with: { (snapshot) in
if let dictionary = snapshot.value as?[String : AnyObject] {
self.navigationItem.title = dictionary["Full Name"] as? String
}
}, withCancel: nil)
}
}

最佳答案

最简单的解决方案是使用 UINavigationItemtitleView 属性代替 title。为 titleView 使用 UIButton

关于ios - 如何能够响应导航项标题上的点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53469908/

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