gpt4 book ai didi

ios - iOS App顶部导航添加多个按钮的方法

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

我正在创建一个简单的应用程序,并希望顶部栏上有多个按钮。我已经添加了一个可以添加新项目的按钮,但我希​​望那里还有其他按钮,以便用户转到不同的屏幕。这就是现在的样子。

enter image description here

有没有办法在栏上添加其他按钮?如果是这样,如何?还是为此功能设置标签栏很常见?比如这个

enter image description here

最佳答案

是的,您的导航栏上可以有多个按钮。您可以将它们添加到栏的右侧或左侧。为此,您需要创建多个条形按钮并将它们添加为一个数组。像这样:

UIBarButtonItem *actionBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:nil];

UIBarButtonItem *addBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:nil];

UIBarButtonItem *bookmarksBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:nil];

self.navigationItem.rightBarButtonItems = @[actionBtn, addBtn, bookmarksBtn]; //Considering that you want to have three buttons on the right side.

关于ios - iOS App顶部导航添加多个按钮的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22812378/

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