gpt4 book ai didi

swift - 重新创建 Apple Music UINavigationController 标题箭头

转载 作者:可可西里 更新时间:2023-11-01 01:39:38 24 4
gpt4 key购买 nike

我正在尝试从 Apple 新音乐应用程序的“新建”选项卡创建外观:

enter image description here

起初,我以为箭头只是一个 unicode 字符,但我找到的最接近的符号是:﹀,而且它不是垂直对齐的,所以这段代码产生以下内容

navigationItem.title = "All Genres﹀"
navigationController!.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.redColor()]

enter image description here

您对我如何着手做这件事有什么建议吗?

最佳答案

我使用@rounak 的解决方案让它工作了。这是任何想知道的人的代码

let arrow = UIImage(named: "titleArrow")!.imageWithRenderingMode(.AlwaysOriginal)

let titleButton = UIButton(type: .System)
titleButton.addTarget(self, action: "pickGenre", forControlEvents: .TouchUpInside)

titleButton.setTitle("All Genres", forState: .Normal)
titleButton.setTitleColor(UIColor.redColor(), forState: .Normal)
titleButton.titleLabel!.font = UIFont.systemFontOfSize(16)

titleButton.setImage(arrow, forState: .Normal)
titleButton.sizeToFit()

titleButton.titleEdgeInsets = UIEdgeInsetsMake(0, -titleButton.imageView!.frame.width, 0, titleButton.imageView!.frame.width)
titleButton.imageEdgeInsets = UIEdgeInsetsMake(0, titleButton.titleLabel!.frame.width + 2.5, 0, -titleButton.titleLabel!.frame.width)

navigationItem.titleView = titleButton

titleArrow@2x.png: enter image description here

关于swift - 重新创建 Apple Music UINavigationController 标题箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31193209/

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