使用方法:
1.定义属性
let radioAlbum = HWRadioAlbum()
2.调用方法(显示提示框)
override func touchesBegan(_ touches: Set, with event: UIEvent?) {
radioAlbum.showPromptBox()
}
3.实现闭包回调接收图片
override func viewDidLoad() {
super.viewDidLoad()
weak var weakSelf = self // 弱引用
radioAlbum.selectedImageBlock = { (image)in // 选择图片的回调
weakSelf!.imageView.image = image
}
}
2021-05-13 16:12:02
266KB
系统功能
1