文章来源:淘论文网   发布者: 毕业设计   浏览量: 34



还可以点击去查询以下关键词:
[iOS-YHAlertView]    [自定义]    [AlertView]    [Swift]    [iOS-YHAlertView(自定义AlertView,Swift版)]   

项目介绍:

iOS-YHAlertView(自定义AlertView,Swift版)

简单介绍

YHAlertView是仿系统的UIAlertView,UIAlertController弹出风格而定制的弹出视图。支持多选择,论文,模糊背景,通俗易懂,扩展性好,代码无侵入。由此,开题报告,你可以定制专属风格的AlertView.

API 介绍

在YHAlertView.swift文件中,用标注的方式Public Property,Public Method,Private Property,Private Method区分好公有和私有的属性、方法。

调用方式

可以参考我的DEMO:YHAlertView

// 样式一:
// message 和 cancelBtn 为nil
YHAlertView.show(title: "YHAlertView", message: nil, cancelButtonTitle: nil, otherButtonTitle: "确定") {
(alertV:YHAlertView, index:Int) in

print('点击下标是:\(index)')

}

// 样式二:
// message 好长
YHAlertView.show(title: "YHAlertView", message: "消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊啊消息好长啊啊", cancelButtonTitle: "取消", otherButtonTitle: "确定") {
(alertV:YHAlertView, index:Int) in

print('点击下标是:\(index)') }

// 样式三
// 多选择弹框
YHAlertView.show(title: "YHAlertView", message: "多选择弹框", cancelButtonTitle: "取消", otherButtonTitles:"1","2","3","4","5","6") { (alertV:YHAlertView, index:Int) in

print('点击下标是:\(index)') }

// 样式四
// 取消模糊背景
let alertV = YHAlertView(title: "YHAlertView", message: "取消模糊背景", delegate: self, cancelButtonTitle: "取消", otherButtonTitles: ["确定"])
alertV.visual = false
alertV.show()

// 样式五
// 取消弹出动画,改变背景颜色
let alertV = YHAlertView(title: "YHAlertView", message: "取消弹出动画,改变背景颜色", delegate: self, cancelButtonTitle: "取消", otherButtonTitles: ["确定"])
alertV.visual = false
alertV.animationOption = .none
alertV.visualBGColor = UIColor.red
alertV.show()


这里还有:


还可以点击去查询:
[iOS-YHAlertView]    [自定义]    [AlertView]    [Swift]    [iOS-YHAlertView(自定义AlertView,Swift版)]   

请扫码加微信 微信号:sj52abcd


下载地址: http://www.taolw.com/down/7169.docx
  • 上一篇:仿iOS官方知乎日报APP
  • 下一篇:动画,倒计时,图层