购买应用内购买产品后,如何在上述课程中展示View Controller?
import Foundation
import StoreKit
class IAPService: NSObject {
private override init() {}
static let shared = IAPService()
var products = [SKProduct]()
let paymentQueue = SKPaymentQueue.default()
//......some more IAP code here...
func presentVC(){ What to write here??? }
答案 0 :(得分:0)
由于 NSObject 的子类没有导航功能,因此您需要两者之一
1-通过添加此变量来使用委托
weak var myController:VCName?
并在需要时将其初始化(在使用之前,以便导航将起作用)然后使用
myController?.present(anotherVC,animated:true)
2-使用应用程序的rootVC(但请注意,此时可能会显示另一个vc,因此它可能/不起作用,这取决于您的导航结构)
UIApplication.shared.keyWindow?.rootViewController?.present..........