WGBCustomAlertPopupView 1.0.5

WGBCustomAlertPopupView 1.0.5

WGBCoder 维护。



  • wangguibin

WGBCustomAlertView

Version License Platform

自定义弹窗视图

支持引入 pod 私有库

pod 'WGBCustomAlertPopupView'

三行代码,搞定一个弹窗

"Talk is cheap show me your code !"

首先引入头文件 #import "WGBCustomPopUpView.h"

	//实例化	
  	WGBCustomPopUpView *popUpView = [[WGBCustomPopUpView alloc] init];
  	
	UIView *bgView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds];
	bgView.userInteractionEnabled = YES;
	bgView.backgroundColor = [UIColor clearColor] ;

  	UIView *redView = [[UIView alloc] init];
  	redView.frame = CGRectMake(0,kScreenHeight-200,375,200);
  	redView.backgroundColor =[UIColor redColor];
	redView.center = CGPointMake(bgView.frame.size.width/2, bgView.frame.size.height/2);
	[bgView addSubview: redView];


	/// 以下三行才是关键代码 
  	popUpView.contentView = redView;  //设置内容视图
  	popUpView.animationType = arc4random()%6;  //设置弹窗动画类型  随机枚举值  
  	[popUpView show]; // 弹出来瞧瞧

  	// 必要的时候消除弹窗
  		popUpView.touchDismiss = YES;
  		[popUpView dismiss];
 
以上...