gpt4 book ai didi

iOS NavigationController 后退图标

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

是否可以将后退按钮的图标从箭头更改为其他图标? (在导航栏中)

我在storyboard的preferences里没找到解决方案

最佳答案

如果您的部署目标至少是 iOS 7,您可以使用 backIndicatorImagebackIndicatorTransitionMaskImage 属性。如果你想更改应用程序中的所有导航栏,我建议使用 appearance 方法:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject:AnyObject]?) -> Bool {
let backIcon = UIImage(named: "customImage")
UINavigationBar.appearance().backIndicatorImage = backIcon
UINavigationBar.appearance().backIndicatorTransitionMaskImage = backIcon
return true
}

关于iOS NavigationController 后退图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30110238/

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