如何创建“删除”列表xcode 中的操作表?
如何创建如下所示的删除确认?
How do I create a delete confirmation like the one shown below?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何创建如下所示的删除确认?
How do I create a delete confirmation like the one shown below?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
这是 UIActionSheet 的实例。红色按钮称为“破坏性按钮”,黑色按钮称为“取消按钮”。
这是一个演示:
That is an instance of a UIActionSheet. The red button is called the "destructive button" and the black button, the "cancel button".
Here is a demo:
您需要使用 UIActionSheet。
您可以像这样创建一个 ActionSheet
您需要实现
UIActionSheetDelegate
方法You need to use UIActionSheet.
You can create an ActionSheet like this
You need to implement
UIActionSheetDelegate
method如果您想要如图所示的内容以及其他按钮,请使用下面的 UIActionSheet 博客教程 如果您只想要独立按钮,请按照下面的帖子
如何使用 iPhone SDK 创建一个大的红色 UIButton?
If you want the same as shown in photo along with other button use the below UIActionSheet blog tutorial and if you want just standalone button follow the below SO post
How can I create a big, red UIButton with the iPhone SDK?
使用 InterfaceBuilder(或 xCode4 中的等效编辑器)创建视图。编写你的视图控制器。然后使用核心动画将视图设置为从下方滑入的动画。
Use InterfaceBuilder (or the equivalent editors in xCode4) to create the view. Write your view controller. Then animate the view to slide in from below using Core Animation.