gpt4 book ai didi

ios - 如何制作带有左侧后退/前进箭头的 iOS UIToolbar

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:14 27 4
gpt4 key购买 nike

我正在尝试将工具栏放置在日期选择器上方,该工具栏左侧有后退和前进箭头。我想使用标准的 iOS 机器来执行此操作,而不是推出自定义按钮来执行此操作。这可能吗?我附上了一张图片以供引用。提前致谢!

Example toolbar with desired <> assets

最佳答案

我知道您不想使用自定义按钮,而且此解决方案没有自定义按钮,但它有自定义图标。我希望这个对你有用。我到处寻找解决方案,但没有找到 Apple 构建的任何东西,所以我想我会自己做。这就是它的样子,不完全相同,但非常接近。

enter image description here

在我制作工具栏的方法中,我使用了这段代码。

 previousButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"Back.png"]
style:UIBarButtonItemStyleBordered
target:self
action:@selector(previousField:)];
nextButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"Forward.png"]
style:UIBarButtonItemStyleBordered
target:self
action:@selector(nextField:)];

您需要做的就是插入图像。我在名为 Paint Code 的程序中制作了视网膜和非视网膜。

也许这会对某人有所帮助。

编辑 2017 年 7 月 16 日还添加了 3x 图像!

enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here

关于ios - 如何制作带有左侧后退/前进箭头的 iOS UIToolbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19058654/

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