您的位置:首页 > 产品设计 > UI/UE

iOS之UIActionSheet

2015-01-05 09:56 302 查看
1、.h

#import <UIKit/UIKit.h>

@interface FKViewController : UIViewController <UIActionSheetDelegate>

- (IBAction)clicked:(id)sender;

@end

2、.m
#import "FKViewController.h"

@interface FKViewController ()

@end

@implementation FKViewController

- (void)viewDidLoad
{
[super viewDidLoad];
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}

- (IBAction)clicked:(id)sender {
// 创建一个UIActionSheet
UIActionSheet* sheet = [[UIActionSheet alloc]
initWithTitle:@"请确认是否删除" // 指定标题
delegate:self // 指定该UIActionSheet的委托对象就是该控制器自身
cancelButtonTitle:@"取消" // 指定取消按钮的标题
destructiveButtonTitle:@"确定" // 指定销毁按钮的标题
otherButtonTitles:@"按钮一", @"按钮二", nil]; // 为其他按钮指定标题
// 设置UIActionSheet的风格
sheet.actionSheetStyle = UIActionSheetStyleAutomatic;
[sheet showInView:self.view];
}

- (void)actionSheet:(UIActionSheet *)actionSheet
clickedButtonAtIndex:(NSInteger)buttonIndex
{
// 使用UIAlertView来显示用户单击了第几个按钮
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"提示"
message:[NSString stringWithFormat:@"您单击了第%d个按钮" , buttonIndex]
delegate:nil
cancelButtonTitle:@"确定"
otherButtonTitles: nil];
[alert show];
}
@end
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iOS UIActionSheet