iOS之自定义弹窗

来源:互联网 发布:mysql时间戳转换 编辑:程序博客网 时间:2024/04/28 02:26

先上效果图

1.gif

1.gif       

效果一:

只需要在控制里边上写上,轻轻松松

1
2
3
4
5
HHShowView *showView = [HHShowView alertTitle:@"有点意思" message:@"你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢" ];
    [showView addAction:[HHAlertAction actionTitle:@"确定" style:HHAlertActionConfirm handler:^(HHAlertAction *action) {
                NSLog(@"确定确定确定确定");
    }]];
    [showView show];

效果二:

1
2
3
4
5
6
7
8
9
10
HHShowView *showView = [HHShowView alertTitle:@"有点意思" message:@"你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢" ];
    showView.butttonCancelBgColor = [UIColor orangeColor];
     
    [showView addAction:[HHAlertAction actionTitle:@"取消" style:HHAlertActionCancel handler:^(HHAlertAction *action) {
                NSLog(@"取消取消取消取消");
            }]];
    [showView addAction:[HHAlertAction actionTitle:@"确定" style:HHAlertActionConfirm handler:^(HHAlertAction *action) {
                NSLog(@"确定确定确定确定");
    }]];
    [showView show];


原创粉丝点击