源码地址:Github链接
hll-popupsmanager-ios 的swift版本
hll-popupsmanager-ios
hll-popupsmanager-ios技术文档
Install
使用
1 2 3 4 5 6 7 8 9
| class CustomPopView: UIView, SwiftPopuperProtocol { func supplyCustomPopupView() -> UIView { return self } func layout(with superView: UIView) { } }
|
配置弹窗并弹出
1 2 3 4 5 6 7 8 9 10
| func showPopup() { var config = PopuperConfig(identifier: "popupName") config.sceneStyle = .center config.clickOutsideDismiss = true config.cornerRadius = 8 config.popAnimationStyle = .scale config.isAloneMode = true let customPopView = CustomPopView() SwiftPopuper.addPopup(customPopView, options: config) }
|