ios对话框 按钮

UIActionSheet和UIAlertView在iOS中,都是弹出一个对话框,用户必须点击上面的按钮后才能执行其他操作。
下图是UIActionSheet,对话框显示在底部:
ios对话框 按钮
下图是AlertView,显示在屏幕正中:
ios对话框 按钮
当按钮在两个以内时,按钮是水平显示的,当超过两个时,会垂直显示。
相当代码:
首先在viewController h头文件添加UIActionSheetDelegate,UIAlertViewDelegate协议,如下:

#import <UIKit/UIKit.h>
@interface TESTViewController : UIViewController <UIActionSheetDelegate,UIAlertViewDelegate>

以下代码在ViewController.m文件中
打开ActionSheet对话框:

 UIActionSheet *sheet=[[UIActionSheet alloc] initWithTitle:@"你确定?" 
        delegate:self 
        cancelButtonTitle:@"不确定" 
        destructiveButtonTitle:@"非常确定" 
        otherButtonTitles: nil];    
[sheet showInView:self.view];

接收ActionSheet点击事件,以及打开AlertView对话框、接收AlertView点击事件:

-(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{
    //该方法由UIActionSheetDelegate协议定义,在点击ActionSheet的按钮后自动执行
    NSString *string=[NSString stringWithFormat:@"你点击了 %@",
                                [actionSheet buttonTitleAtIndex:buttonIndex]];
 
    UIAlertView *alert=[[UIAlertView alloc] 
                            initWithTitle:@"提示" 
                            message:string 
                            delegate:self 
                            cancelButtonTitle:@"确定" 
                            otherButtonTitles:@"取消",
                        nil];
    alert.alertViewStyle=UIAlertViewStyleDefault;   
    //UIAlertViewStyleDefault 默认风格,无输入框  
    //UIAlertViewStyleSecureTextInput 带一个密码输入框  
    //UIAlertViewStylePlainTextInput 带一个文本输入框  
    //UIAlertViewLoginAndPasswordInput 带一个文本输入框,一个密码输入框
    [alert show];
 }
-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{
    //该方法由UIAlertViewDelegate协议定义,在点击AlertView按钮时自动执行,所以如果这里再用alertView来弹出提
    //示,就会死循环,不停的弹AlertView
    NSString * string=[NSString stringWithFormat:@"你点击了 %@",
                        [alertView buttonTitleAtIndex:buttonIndex]];    
    //    UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"提示" 
    //                            message:string 
    //                            delegate:self 
    //                            cancelButtonTitle:@"确定"
    //                            otherButtonTitles:nil];
    //    [alert show];
    NSLog(@"%@",string);
  //NSLog(@"输入 %@",[[alertView textFieldAtIndex:0] text]); 
    //获取第一个文本框输入的文本,如果没有文件框,会异常,索引从0开始 
}


添加按钮和按钮点击事件的的方法

    CGRect frame = CGRectMake(90, 200, 200, 60);
    UIButton *someAddButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    someAddButton.backgroundColor = [UIColor clearColor];
    [someAddButton setTitle:@"动态添加一个按钮!" forState:UIControlStateNormal];
    someAddButton.frame = frame;
    [someAddButton addTarget:self action:@selector(someButtonClicked) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:someAddButton];
-(void) someButtonClicked{  
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" 
                                                    message:@"您点击了动态按钮!"   
                                                   delegate:self   
                                          cancelButtonTitle:@"确定"  
                                          otherButtonTitles:nil];  
    [alert show];
}

按钮转自:http://www.cnblogs.com/stoic/archive/2012/07/31/2616423.html

你可能感兴趣的:(ios对话框 按钮)