GRAlertView 1.0.9

GRAlertView 1.0.9

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布最后发布2017年9月

hooge 维护。




  • 无忧王子

拥有 blur 效果的弹窗组件~~ image

系统要求

  • iOS 6.0
  • ARC
  • 语言:Objective-C

安装方法

支持 CocoaPods 安装,运行 pod search GRAlertView

也可以下载文件,并将其拖放到项目目录中。

使用方法:

###1.创建 flowlayout configurator 对象并配置参数

		// your custom contentview
		SexualOrientationContentView *contentView = 
		[[SexualOrientationContentView alloc] init];
		  
	   GRAlertView *alertView = 
	   [GRAlertView alertViewWithContentView:contentView
	     ViewHeight:408 ViewWidth:284];
	     
   	contentView.delegate = self;
   	alertView.topImageName = @"imagename";
   	alertView.animationStyle = style;
   	[alertView present:self.navigationController];
	 

2.在窗口中显示

		[alertView presentOnWindow]