如何为iPhone创建自定义弹出窗口? [英] How can I create a custom popup window for iPhone?

查看:230
本文介绍了如何为iPhone创建自定义弹出窗口?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为iPhone创建一个自定义弹出式窗口,应该如下所示:

I want to create a custom popup window for iPhone which should look like this:

对于iPhone和iPod设备,最正确的方法是什么?

What is the most correct way to implement this for iPhone and iPod devices?

推荐答案

最好的方法是使用UIActionSheet。代码在这里:

The best way to do this is using a UIActionSheet. The code is here:

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Facebook",@"Twitter", nil];
[actionSheet showInView:self.view];

UIActionSheet从底部到顶部,有一定数量的按钮要显示。

A UIActionSheet comes from the bottom to the top with a certain number of buttons you wish to display. You can also put a cancel button that will automatically dismiss the UIActionSheet.

下面是它的外观:

这篇关于如何为iPhone创建自定义弹出窗口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆