如何创建标准的 iOS 分享按钮?

How do I create a standard iOS Share button?(如何创建标准的 iOS 分享按钮?)
本文介绍了如何创建标准的 iOS 分享按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

iOS 人机界面指南说:

<块引用>

使用系统提供的分享按钮.用户熟悉此按钮的含义和行为,因此最好尽可能使用它.主要的例外情况是,如果您的应用不包含工具栏或导航栏[,因为] 共享按钮只能在工具栏或导航栏中使用.

好的,但是我如何使用系统提供的分享按钮"?搜索文档没有发现任何用处.p>

我收集到 我应该在我的响应中使用 UIActivityViewController 来响应被点击的按钮,但我首先要如何创建标准的分享"按钮?

解决方案

标准的分享按钮是一个 UIBarButtonItem(所以它只能在导航栏或工具栏上).您需要 创建一个系统项";具体来说,一个行动项目".操作"栏按钮项是共享按钮.

The iOS Human Interface Guidelines say:

Use the system-provided Share button. Users are familiar with the meaning and behavior of this button, so it’s a good idea to use it when possible. The main exception to this is if your app does not contain a toolbar or navigation bar[, as] the Share button can only be used in a toolbar or navigation bar.

OK, but how do I "use the system-provided Share button"? A search of the documentation turns up nothing useful.

I've gathered that I should use UIActivityViewController in my response to the button being tapped, but how would I create the standard Share button in the first place?

解决方案

The standard Share button is a UIBarButtonItem (so it can only go on a navigation bar or toolbar). You need to create a "system item"; specifically, an "action item". The "action" bar button item is the Share button.

这篇关于如何创建标准的 iOS 分享按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)