UIAlertView 的点击 选择委托事件 选择和点击

来源:互联网 发布:it机柜 编辑:程序博客网 时间:2024/05/21 00:55

//按钮事件

-(IBAction)btnRead

{   

    UIAlertView* a=[[UIAlertViewalloc]init];

    a=[[UIAlertViewallocinitWithTitle:@"b"message:@"s"delegate:selfcancelButtonTitle:@"确定"otherButtonTitles@"取消",nil];    

    [a show]; 

}

//定义的委托,buttonindex就是按下的按钮的index值

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

    NSLog(@"%i",buttonIndex);

}

0 0
原创粉丝点击