【Swift】類似於微博、微信的ActionSheet

小豬熊發表於2017-12-13

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
複製程式碼

相關文章