美文网首页
iOS-UIAlertView 警告对话框(已弃用)

iOS-UIAlertView 警告对话框(已弃用)

作者: 我是谁重要吗 | 来源:发表于2018-03-21 16:58 被阅读3次

    已由 UIAlertController 代替

    已由 UIAlertController 代替

    已由 UIAlertController 代替

    //////别忘在 .h 中写代理 <UIAlertViewDelegate>
    ////通常放在button的点击效果里

    - (void)buttonClick{
        UIAlertView* alv = [[UIAlertView alloc] initWithTitle:@"标题" message:@"你喜欢我吗?" delegate:self cancelButtonTitle:@"不喜欢" otherButtonTitles:@"很喜欢",@"超级喜欢", nil];
        [alv show];
        //[alv release];
    }
    
    - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
        //不喜欢0 很喜欢1 超级喜欢2.......
        if (buttonIndex == 0) {
            [self buttonClick];
        }
    }
    
    //代码控制 消失
    [Alert dismissWithClickedButtonIndex:0 animated:NO];
    
    - (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex 
    - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex 
    

    相关文章

      网友评论

          本文标题:iOS-UIAlertView 警告对话框(已弃用)

          本文链接:https://www.haomeiwen.com/subject/awngqftx.html