iOS自定义UIAlertController,简单,方便自定义

现在App中用到提示框是不可避免的,但是系统UIAlertController的效果不太满意,自能自定义UIAlertController,我是用runtime与kvc结合实现自定义UIAlertController。

这是基本写法

 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"性别只能修改一次,注册后不能更改"message:nilpreferredStyle:UIAlertControllerStyleActionSheet];

    UIAlertAction *nan = [UIAlertAction actionWithTitle:@"男性"style:UIAlertActionStyleDefault handler:^(UIAlertAction *_Nonnullaction) {

        NSLog(@"男性");

    }];

    UIAlertAction *nv = [UIAlertAction actionWithTitle:@"女性"style:UIAlertActionStyleDefault handler:^(UIAlertAction *_Nonnullaction) {

        NSLog(@"女性");

    }];

    UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消"style:UIAlertActionStyleCancel handler:^(UIAlertAction *_Nonnullaction) {

        NSLog(@"取消");

    }];

    [alert addAction:nan];

    [alert addAction:nv];

    [alert addAction:cancel];

    [selfpresentViewController:alert animated:YEScompletion:nil];


系统的效果(是不是有点有点丑)

如果需要把 “男性” 字体颜色改为黄色,那该怎么办那?

那就需要使用runtime和kvc结合了,首先使用runtime来获取UIAlertController和UIAlertAction的所有属性。在我以前的文章中详细讲解过,在这里就不再多说了。

文章地址:Runtime与KVC详解

只需要添加这一句即可

//修改 “男性” 字体的颜色

[nansetValue:[UIColor yellowColor] forKey:@"_titleTextColor"];


效果图(修改“男性”字体颜色)

如果需要把 “性别只能修改一次,注册后不能更改” 字体改为30px,那该怎么办那?

只需要添加这几句即可

NSMutableAttributedString *attibuedString = [[NSMutableAttributedString alloc]initWithString:@"性别只能修改一次,注册后不能更改"];

    [attibuedStringaddAttribute:NSFontAttributeNamevalue:[UIFontsystemFontOfSize:30]range:NSMakeRange(0, attibuedString.length)];

    [alertsetValue:attibuedStringforKey:@"attributedTitle"];


效果图(修改标题的字号)

这就是简单的修改UIAlertController的样式,可以简单的解决一些问题,这样也有些不足,如果想要修改 “男性” 字体的大小,就实现不了。就需要你自定义UIAlertController了。


效果图(自定义UIAlertController)

在使用过程中只需要传入你需要显示的内容和背景图即可

self.alertView = [[AlertView alloc]initWithFrame:CGRectMake(0, kScrentH, kScrentW, 196)];

    NSArray *titles = @[@"性别只能选择一次, 注册后不能修改", @"男性", @"女性", @"取消"];

    NSArray *actionBgImage = @[@"弹窗(提示)", @"弹窗(性别)", @"弹窗(性别)", @"弹窗(取消)"];;

    [self.alertViewalertTitles:titlesactionBgImages:actionBgImage];

    [self.viewaddSubview:self.alertView];


    //block回调事件

    __weakViewController*weakSelf =self;

    [self.alertViewsetClickBtn:^(NSIntegertag) {

        switch(tag) {

            case1:

                 NSLog(@"男性");

                break;

            case2:

                NSLog(@"女性");

                break;

            case3:

                NSLog(@"取消");

                break;


            default:

                break;

        }

        [weakSelf.alertViewalertDisAppear];

    }];


///动画开始(AlertView弹出)

- (void)alertAppear;

///动画结束(AlertView退出)

- (void)alertDisAppear;

用法简单,欢迎来讨论、使用。

Demo地址:Demo的地址

你可能感兴趣的:(iOS自定义UIAlertController,简单,方便自定义)