Manos Chorianopoulos

add empty numbersList popup at shareVC

......@@ -272,6 +272,9 @@ import SwiftEventBus
// MARK: NumbersPopup
extension ShareViewController: NumbersPopupDelegate {
@objc func numbersPopupTapped(_ sender: Any) {
if (self.numbersList.count == 0) {
self.showDialog("Κάνε δώρο","Για την αποστολή του δώρου σου χρειάζεται να έχεις κινητό COSMOTE.")
} else {
let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
// self.storyboard?
let pp = storyboard.instantiateViewController(withIdentifier: "NumberPopupViewController") as! SwiftWarplyFramework.NumberPopupViewController
......@@ -281,6 +284,7 @@ extension ShareViewController: NumbersPopupDelegate {
delegate: self,
headerText: "Αποστολέας")
}
}
func presentedPopup() {
// Code for when popup is presented
......