iPhone 在导航栏中添加项目/行按钮

发布于 2024-10-06 02:49:17 字数 150 浏览 1 评论 0原文

是否有一种标准方法可以在导航栏中实现如下所示的按钮?如果没有,我当然可以只使用图像或自定义视图,但由于它在很多应用程序中使用,我认为可能缺少一种方法。

添加行/项目按钮

Is there a standard way to implement a button like the one below in a navigation bar? If not I can, of course, just use an image or maybe a custom view but as it's used in quite a few apps I thought there may be a method I'm missing.

Add row/item button

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

他不在意 2024-10-13 02:49:17
UIBarButtonItem *barBtnItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add:)];

self.navigationItem.rightBarButtonItem=barBtnItem;
        [barBtnItem release];

此代码用于创建 + 按钮。

UIBarButtonItem *barBtnItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add:)];

self.navigationItem.rightBarButtonItem=barBtnItem;
        [barBtnItem release];

this code use for creating + button.

染年凉城似染瑾 2024-10-13 02:49:17

这是标准 UIBarButtonSystemItem 系统图标之一 (UIBarButtonSystemItemAdd) - 请查看 UIBarButtonItem 类参考中的 initWithBarButtonSystemItem:target:action: 方法。

That's one of the standard UIBarButtonSystemItem system icons (UIBarButtonSystemItemAdd) - take a look at the initWithBarButtonSystemItem:target:action: method in the UIBarButtonItem Class Reference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文