PokerCard - iOS 多样式弹窗库
MIT
iOS
Objective-C
软件简介
PokerCard,一款 iOS 多样式弹窗开源库。
Basic Usage
import PokerCard
class ViewController: UIViewController {
override viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// present a poker card
PokerCard.showAlert(title: "Please notice").confirm {
// do something ...
}
}
}