操作 sheet 在 iPad 上没有取消按钮
Action sheet doesn't having cancel button on iPad
我正在使用 xamarin.forms
,在我的代码中,我有操作 sheet 它在 iPad 中没有取消按钮。在 iPhone 中,我可以看到取消按钮,但在 iPad
中看不到
var action = await DisplayActionSheet(null, "Cancel", null, "string 2","string2");
我做错了什么或者有什么默认功能吗?
这是 iPad 上的预期行为 - 取消按钮已删除,因为用户可以点击 sheet 外部以关闭(取消)它。
iOS 上的 DisplayActionSheet
在下方使用 UIAlertController
,iPad 上缺少取消按钮是 UIAlertController
.
的标准行为
我正在使用 xamarin.forms
,在我的代码中,我有操作 sheet 它在 iPad 中没有取消按钮。在 iPhone 中,我可以看到取消按钮,但在 iPad
var action = await DisplayActionSheet(null, "Cancel", null, "string 2","string2");
我做错了什么或者有什么默认功能吗?
这是 iPad 上的预期行为 - 取消按钮已删除,因为用户可以点击 sheet 外部以关闭(取消)它。
iOS 上的DisplayActionSheet
在下方使用 UIAlertController
,iPad 上缺少取消按钮是 UIAlertController
.