Skip to content

ruanqiaohua/AlertView

Repository files navigation

AlertView

自定义弹窗

样式一

Image

样式二

Image

使用方法

#import "ZQAlertViewController.h"

- (IBAction)alertBtnAction:(UIButton *)sender {
    
    if (sender == _alert1) {
        
        ZQAlertViewController *alertController = [ZQAlertViewController alertViewWithTitle:@"Try to be a rainbow in someone’s cloud.\n当乌云萦绕心头,我愿成为你的彩虹。" buttonStyle:ZQAlertButtonStyleCustom];
        [alertController addSureButton:@"" cb:nil];
        [alertController addCancelButton:@"" cb:nil];
        [alertController show];
    } else {
        
        ZQAlertViewController *alertController = [ZQAlertViewController alertViewWithTitle:@"Try to be a rainbow in someone’s cloud.\n当乌云萦绕心头,我愿成为你的彩虹。" buttonStyle:ZQAlertButtonStyleSystem];
        [alertController addSureButton:@"" cb:nil];
        [alertController addCancelButton:@"" cb:nil];
        [alertController show];
    }
}

About

自定义弹窗

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published