• SIAlertView


    SIAlertView是AlertView的替代产品 的效果比较多 。

    使用实例:

    SIAlertView *alertView = [[SIAlertView alloc] initWithTitle:@"" andMessage:@"选择实名认证的银行卡类型"];

            [alertView addButtonWithTitle:@"借记卡" type:SIAlertViewButtonTypeDefault handler:^(SIAlertView *alertView) {

                ABAuthorViewController *ab = [[ABAuthorViewController alloc]init];

                ab.hidesBottomBarWhenPushed = YES;

                ab.isForAuthen = YES;

                [self.navigationController pushViewController:ab animated:YES];

            }];

            [alertView addButtonWithTitle:@"信用卡" type:SIAlertViewButtonTypeDefault handler:^(SIAlertView *alertView) {

                CAuthorViewController *ab = [[CAuthorViewController alloc]init];

                ab.hidesBottomBarWhenPushed = YES;

                ab.isForAuthen = YES;

                [self.navigationController pushViewController:ab animated:YES];

            }];

           

            [alertView addButtonWithTitle:@"取消"

                                     type:SIAlertViewButtonTypeCancel

                                  handler:^(SIAlertView *alertView) {

                                  }];

           

            alertView.willShowHandler = ^(SIAlertView *alertView) {

               

            };

            alertView.didShowHandler = ^(SIAlertView *alertView) {

               

            };

            alertView.willDismissHandler = ^(SIAlertView *alertView) {

               

            };

            alertView.didDismissHandler = ^(SIAlertView *alertView) {

                

            };

            [alertView show];

     

     

     

  • 相关阅读:
    windown 下最简单的安装mysql方式
    mac 重置mysql密码
    开发过程中用到的软件
    Springboot 热部署问题。亲测可用。
    时间转换~
    java 流转换BASE64的一些问题
    SpringMvc 使用Thumbnails压缩图片
    SpringMVC Get请求传集合,前端"异步"下载excel 附SpringMVC 后台接受集合
    Mac 笔记本 开发日记
    RabbitMQ入门:路由(Routing)
  • 原文地址:https://www.cnblogs.com/zhaozhongpeng/p/4867755.html
Copyright © 2020-2023  润新知