PGActionSheet 1.0.10

PGActionSheet 1.0.10

测试已测试
语言语言 SwiftSwift
授权协议 自定义
发布时间最新发布时间2018年2月
SPM支持SPM

piggybear维护。



  • 作者
  • piggybear

PGActionSheet

PGActionSheet

1、PGActionSheet使用了UITableView进行复用
2、为了让更好的融合当前界面,PGActionSheet默认的弹出框的透明度是
0.7

CocoaPods安装

pod 'PGActionSheet'

使用

let actionSheet = PGActionSheet(cancelButton: true, buttonList: ["收藏", "保存", "编辑"])
present(actionSheet, animated: false, completion: nil)

有两种方式监听点击事件

1、闭包

actionSheet.handler = {index in
	print("index = ", index)
}

2、代理

func actionSheet(_ actionSheet: PGActionSheet, clickedButtonAt index: Int) {
    print("index = ", index)
}

设置标题

actionSheet.actionSheetTitle = "PGActionSheet"

取消弹出框的透明度

actionSheet.actionSheetTranslucent = false

取消背景的半透明

actionSheet.translucent = false

自定义显示文字的样式

actionSheet.textFont = UIFont.boldSystemFont(ofSize: 20)
actionSheet.textColor = UIColor.orange

自定义取消按钮的样式

actionSheet.cancelTextColor = UIColor.blue
actionSheet.cancelTextFont = UIFont.systemFont(ofSize: 20)

自定义标题的样式

actionSheet.actionSheetTitleFont = UIFont.boldSystemFont(ofSize: 22)
actionSheet.actionSheetTitleColor = UIColor.red