当前位置: 代码迷 >> 综合 >> iOS AlertView、ActionSheet
  详细解决方案

iOS AlertView、ActionSheet

热度:86   发布时间:2024-01-20 19:26:06.0

- (IBAction)clicked:(id)sender {

    UIButton *btn = sender;

    if (btn.tag==0) {

        UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"Title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];

//        设置AlertView样式

        [alertView setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];

        //alertView里面的TF取出来

//        UITextField *nameTF = [alertView textFieldAtIndex:0];

//        UITextField *pwTF = [alertView textFieldAtIndex:1];

//        nameTF.text = @"haha";

//        pwTF.text = @"adfadsf";

        [alertView show];

        

        

    }else{

        

        UIActionSheet *as = [[UIActionSheet alloc]initWithTitle:@"Title" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"destructive" otherButtonTitles:@"呵呵", nil];

        [as showInView:self.view];

    }

}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

   // NSLog(@"%d",buttonIndex);

    if (buttonIndex==1) { //确定

        UITextField *nameTF = [alertView textFieldAtIndex:0];

        UITextField *pwTF = [alertView textFieldAtIndex:1];

        NSLog(@"%@  %@",nameTF.text,pwTF.text);

        

    }else{ //取消

        

    }

}

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{

   // NSLog(@"%d",buttonIndex);

}




转载请注明出处:http://blog.csdn.net/sevenquan