iOS自定义alertView提示框实例分享

本文实例为大家分享iOS自定义alertView提示框,先上图,弹框的背景色,按钮背景色,提示的消息的字体颜色都可以改变

利用单例实现丰富的自定义接口

//
// PBAlertController.h
// PBAlertDemo
//
// Created by 裴波波 on 16/4/20.
// Copyright © 2016年 裴波波. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef void(^PBBlock)();

@interface PBAlertController : UIViewController

/** 设置alertView背景色 */
@property (nonatomic, copy) UIColor *alertBackgroundColor;
/** 设置确定按钮背景色 */
@property (nonatomic, copy) UIColor *btnConfirmBackgroundColor;
/** 设置取消按钮背景色 */
@property (nonatomic, copy) UIColor *btnCancelBackgroundColor;
/** 设置message字体颜色 */
@property (nonatomic, copy) UIColor *messageColor;

/** 创建单例 */
+(instancetype)shareAlertController;
/** 弹出alertView以及点击确定回调的block */
-(void)alertViewControllerWithMessage:(NSString *)message andBlock:(PBBlock) block;

@end

.m文件中初始化控件以及对alertView的控件的属性进行懒加载,确定初始的颜色.

//
// PBAlertController.m
// PBAlertDemo
//
// Created by 裴波波 on 16/4/20.
// Copyright © 2016年 裴波波. All rights reserved.
//

#import "PBAlertController.h"

/** 屏幕尺寸 */
#define kMainScreenBounds [UIScreen mainScreen].bounds

@interface PBAlertController ()

/** 蒙版 */
@property (nonatomic, strong) UIView *coverView;
/** 弹框 */
@property (nonatomic, strong) UIView *alertView;
/** 点击确定回调的block */
@property (nonatomic, copy) PBBlock block;

@end

@implementation PBAlertController

- (void)viewDidLoad {

 [super viewDidLoad];
 self.view.backgroundColor = [UIColor whiteColor];
}

-(void)alertViewControllerWithMessage:(NSString *)message andBlock:(PBBlock) block{

 self.block = block;
 //创建蒙版
 UIView * coverView = [[UIView alloc] initWithFrame:kMainScreenBounds];
 self.coverView = coverView;
 [self.view addSubview:coverView];
 coverView.backgroundColor = [UIColor blackColor];
 coverView.alpha = 0.7;

 //创建提示框view
 UIView * alertView = [[UIView alloc] init];
 alertView.backgroundColor = self.alertBackgroundColor;
 //设置圆角半径
 alertView.layer.cornerRadius = 6.0;
 self.alertView = alertView;
 [self.view addSubview:alertView];
 alertView.center = coverView.center;
 alertView.bounds = CGRectMake(0, 0, kMainScreenBounds.size.width * 0.75, kMainScreenBounds.size.width * 0.75 * 1.5/ 3);

 //创建操作提示 label
 UILabel * label = [[UILabel alloc] init];
 [alertView addSubview:label];
 label.text = @"操作提示";
 label.font = [UIFont systemFontOfSize:19];
 label.textAlignment = NSTextAlignmentCenter;
 CGFloat lblWidth = alertView.bounds.size.width;
 CGFloat lblHigth = 22;
 label.frame = CGRectMake(0, 0, lblWidth, lblHigth);

 //创建中间灰色分割线
 UIView * separateLine = [[UIView alloc] init];
 separateLine.backgroundColor = [UIColor grayColor];
 [alertView addSubview:separateLine];
 separateLine.frame = CGRectMake(0, lblHigth + 1, alertView.bounds.size.width, 1);

 //创建message label
 UILabel * lblMessage = [[UILabel alloc] init];
 lblMessage.textColor = self.messageColor;
 [alertView addSubview:lblMessage];
 lblMessage.text = message;
 lblMessage.textAlignment = NSTextAlignmentCenter;
 lblMessage.numberOfLines = 2; //最多显示两行Message
 CGFloat margin = 5;
 CGFloat msgX = margin;
 CGFloat msgY = lblHigth + 3;
 CGFloat msgW = alertView.bounds.size.width - 2 * margin;
 CGFloat msgH = 44;
 lblMessage.frame = CGRectMake(msgX, msgY, msgW, msgH);

 //创建确定 取消按钮
 CGFloat buttonWidth = (alertView.bounds.size.width - 4 * margin) * 0.5;
 CGFloat buttonHigth = 25;
 UIButton * btnCancel = [[UIButton alloc] init];
 [alertView addSubview:btnCancel];
 [btnCancel setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
 [btnCancel setTitle:@"取消" forState:UIControlStateNormal];
 [btnCancel setBackgroundColor:self.btnCancelBackgroundColor];
 btnCancel.frame = CGRectMake(margin, alertView.bounds.size.height - margin - buttonHigth, buttonWidth, buttonHigth);
 btnCancel.tag = 0;
 [btnCancel addTarget:self action:@selector(didClickBtnConfirm:) forControlEvents:UIControlEventTouchUpInside];
 //确定按钮
 UIButton * btnConfirm = [[UIButton alloc] init];
 btnConfirm.tag = 1;
 [alertView addSubview:btnConfirm];
 [btnConfirm setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
 [btnConfirm setTitle:@"确定" forState:UIControlStateNormal];
 [btnConfirm setBackgroundColor:self.btnConfirmBackgroundColor];
 btnConfirm.frame = CGRectMake(alertView.bounds.size.width - margin - buttonWidth, alertView.bounds.size.height - margin - buttonHigth, buttonWidth, buttonHigth);
 [btnConfirm addTarget:self action:@selector(didClickBtnConfirm:) forControlEvents:UIControlEventTouchUpInside];

}

/** 点击确定 or 取消触发事件 */
-(void)didClickBtnConfirm:(UIButton *)sender{

 if (sender.tag == 0) {
  [self dismissViewControllerAnimated:YES completion:nil];
  return;
 }
 self.block();
 [self dismissViewControllerAnimated:YES completion:nil];
}

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
}

static PBAlertController * instance = nil;
+(instancetype)shareAlertController{

 static dispatch_once_t onceToken;
 dispatch_once(&onceToken, ^{
  instance = [[PBAlertController alloc] init];
 });
 return instance;
}

-(UIColor *)alertBackgroundColor{

 if (_alertBackgroundColor == nil) {
  _alertBackgroundColor = [UIColor colorWithRed:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];
 }
 return _alertBackgroundColor;
}

/** 确定按钮背景色 */
-(UIColor *)btnConfirmBackgroundColor{

 if (_btnConfirmBackgroundColor == nil) {
  _btnConfirmBackgroundColor = [UIColor orangeColor];
 }
 return _btnConfirmBackgroundColor;
}

/** 取消按钮背景色 */
-(UIColor *)btnCancelBackgroundColor{

 if (_btnCancelBackgroundColor == nil) {
  _btnCancelBackgroundColor = [UIColor blueColor];
 }
 return _btnCancelBackgroundColor;
}

/** message字体颜色 */
-(UIColor *)messageColor{

 if (_messageColor == nil) {
  _messageColor = [UIColor blackColor];
 }
 return _messageColor;
}
@end

在需要调用的地方进行调用

//
// ViewController.m
// PBAlertDemo
//
// Created by 裴波波 on 16/4/20.
// Copyright © 2016年 裴波波. All rights reserved.
//

#import "ViewController.h"
#import "PBAlertController.h"
@interface ViewController ()

@end

@implementation ViewController

//点击按钮弹出提示框
- (IBAction)clickShowAlertBtn:(id)sender {

 PBAlertController * alertVc = [PBAlertController shareAlertController];
 alertVc.messageColor = [UIColor redColor];
 [alertVc alertViewControllerWithMessage:@"这是一message沙哈" andBlock:^{
  NSLog(@"点击确定后执行的方法");
 }];
 alertVc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
 [self presentModalViewController:alertVc animated:YES];
}

@end

以上就是本文的全部内容,希望对大家学习iOS程序设计有所帮助。

(0)

相关推荐

  • iOS应用开发中UIView添加边框颜色及设置圆角边框的方法

    UIView加边框及边框颜色 引用库: 复制代码 代码如下: #import <QuartzCore/QuartzCore.h> 使用: 复制代码 代码如下: //添加边框和提示         CGRect frameRect = CGRectMake(20, 90, self.window.frame.size.width-40, self.window.frame.size.height-180);         UIView   *frameView = [[UIView alloc

  • iOS设置可选择圆角方向的控件圆角

    前言 这篇文章主要给大家介绍利用iOS如何设置可选择圆角方向的控件圆角,话不多说,以下是实现的示例代码,一起来看看吧. 示例代码 一.通过设置控件layer的cornerRadius来设置圆角 self.view.layer.cornerRadius =10.f;//如果设置圆角角度为半圆,则数值为控件高度的一半 self.view.layer.masksToBounds = YES;//是否删除多余的位置 二.通过贝塞尔曲线来设置圆角 UIBezierPath *maskPath = [UIB

  • IOS设置按钮为圆角的示例代码

    iOS中很多时候都需要用到指定风格的圆角按钮,以下是UIButton提供的创建圆角按钮方法 设置按钮的4个角: 左上:UIRectCornerTopLeft 左下:UIRectCornerBottomLeft 右上:UIRectCornerTopRight 右下:UIRectCornerBottomRight 示例代码: UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(50, 60, 80, 40)]; button.b

  • iOS9提示框的正确使用方式

    在从iOS8到iOS9的升级过程中,弹出提示框的方式有了很大的改变,在Xcode7 ,iOS9.0的SDK中,苹果已经明确提示不再推荐使用UIAlertView,而推荐使用UIAlertController,现在,我们通过代码来演示一下. #import "LoginViewController.h" @interface LoginViewController () @property (weak, nonatomic) IBOutlet UITextField *passWord;

  • 基于IOS实现带箭头的view

    我使用DrawRect进行的View的拉伸(是这样描述的吧??), 效果图也实现了类似于微信的View效果, 你可以看一看. 创建继承于UIView的视图 .h文件 // backGoundView @property (nonatomic, strong) UIView * _Nonnull backGoundView; // titles @property (nonatomic, strong) NSArray * _Nonnull dataArray; // images @proper

  • iOS实现圆角箭头矩形的提示框

    先来看看我们见过的一些圆角箭头矩形的提示框效果图 一.了解CGContextRef 首先需要对 CGContextRef 了解, 作者有机会再进行下详细讲解, 这篇中简单介绍下, 方便后文阅读理解. 先了解 CGContextRef 坐标系 坐标系 举例说明 : 对于 商城类App 有很多原价, 现价对比 .那 原件的横线怎么画, 就可以用CGContextRef - (void)drawRect:(CGRect)rect { // Drawing code [super drawRect:re

  • IOS开发代码分享之设置UISearchBar的背景颜色

    今天用到UISearchBar,之前网上提供的方法已经不能有效的去除掉它的背景色了,修改背景色方法如下: mySearchBar.backgroundColor = RGBACOLOR(249,249,249,1);     mySearchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:mySearchBar.bounds.size];   //取消searchbar背景色 - (UIImage *)im

  • iOS中 LGLAlertView 提示框的实例代码

    使用与iOS8 以后,只是把系统的UIAlertController进行了封装,省的每次用的时候要写很多的代码.封装后只需要一句代码即可 , deome 地址 :https://github.com/liguoliangiOS/LGLAlertView.git 上代码LGLAlertView.h: #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> typedef NS_ENUM(NSInteger, LGLAlert

  • iOS毛玻璃效果的实现及图片模糊效果的三种方法

    App设计时往往会用到一些模糊效果或者毛玻璃效果,iOS目前已提供一些模糊API可以让我们方便是使用. 话说苹果在iOS7.0之后,很多系统界面都使用了毛玻璃效果,增加了界面的美观性,比如下图的通知中心界面; 但是其iOS7.0的SDK并没有提供给开发者实现毛玻璃效果的API,所以很多人都是通过一些别人封装的框架来实现,后面我也会讲到一个; 其实在iOS7.0(包括)之前还是有系统的类可以实现毛玻璃效果的, 就是 UIToolbar这个类,并且使用相当简单,几行代码就可以搞定. 下面是代码实现:

  • iOS自定义推送消息提示框

    看到标题你可能会觉得奇怪 推送消息提示框不是系统自己弹出来的吗? 为什么还要自己自定义呢? 因为项目需求是这样的:最近需要做 远程推送通知 和一个客服系统 包括店铺客服和官方客服两个模块 如果有新的消息推送的时候 如果用户当前不在客服界面的时候  要求无论是在app前台 还是app退到后台 顶部都要弹出系统的那种消息提示框 这样的需求 我们就只能自定义一个在app内 弹出消息提示框 实现步骤如下: 1.我们自定义一个view 为 STPushView 推送消息的提示框view  #import

随机推荐