欢迎光临
我们一直在努力

【Swift】类似于微博、微信的ActionSheet

建站超值云服务器,限时71元/月

【Swift】类似于微博、微信的ActionSheet

项目介绍:

PGActionSheet.gif

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

GitHub 地址:

https://github.com/xiaozhuxiong121/PGActionSheet

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)
}

设置title

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)

自定义title的样式

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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 【Swift】类似于微博、微信的ActionSheet
分享到: 更多 (0)