- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我使用操作表来确认删除,类似于内置的照片应用程序。在 iPad 上,操作表仅显示破坏性按钮;通过在显示操作表的弹出窗口外部点击来取消它。
当我显示操作表时,显示操作表的弹出窗口太高 - 破坏性按钮下方有一些填充:
这与照片应用程序的行为不同,在照片应用程序中,弹出窗口与破坏性按钮一样大:
有没有办法让 action sheet 的高度类似于图片应用程序?
我正在使用 Xamarin 进行开发,我正在使用此代码来显示操作表:
actionSheet = new UIActionSheet(null, null, null, "Delete Attachment");
actionSheet.ShowFrom(NavigationItem.RightBarButtonItem, true);
此代码的 Objective C 等价物是:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:nil
cancelButtonTitle:nil
destructiveButtonTitle:@"Delete Attachment"
otherButtonTitles:nil];
[actionSheet showFromBarButtonItem: self.navigationItem.rightBarButtonItem
animated: YES];
最佳答案
如果 cancelButtonTitle
为 nil
(null
),则会出现此行为。如果我指定一个字符串作为 cancelButtonTitle,iPad UI 将不会显示取消按钮,但会显示具有正确布局的按钮。
从https://stackoverflow.com/a/20907552/112964得到答案对于问题Remove Padding from UIActionSheet Popover .
关于ios - 具有单个破坏性按钮的 UIActionSheet 布局错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25133063/
我正试图让这个 map 功能成为一个更具破坏性的版本。这意味着 map 函数会修改原始数组而不是新数组。 function map (array, callback) { var result =
破坏性 Lisp 函数名称中的“N”缩写是什么词? 最佳答案 这是一个直接的答案from Linearity的 link : The N stands for non-consing, meaning
这是带有数据绑定(bind)元素的 html: div data-bind="foreach: clientRequests" id="test2">
我是一名优秀的程序员,十分优秀!