私はmobilepayという名前で迅速に自分のアプリケーションに支払いモジュールを実装しようとしています。私のアプリケーションのユーザーがコーヒーを買い、モバイルペイで買い物をすると、彼はモバイルペイアプリケーションに来て、そこでコーヒーを買う。その後、私たちはアプリケーションのデリゲートで呼び出される関数(アプリケーションデリゲートに配置されるようにmobilepay自身が要求した)を返します。 は、我々は次のように言って、視聴者のための警告を実行しようとしたとき、我々は基本的に、このエラーを取得するバック我々のアプリケーションを取得すると、「成功の購入を。」:アプリケーションの再開時に警告が表示されない
func alert(message: String, title: String = "") {
let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
let OKAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController.addAction(OKAction)
self.window?.rootViewController?.present(alertController, animated: true, completion: nil)
}
func application(_ app: UIApplication, open url: URL, options: [String: Any]) -> Bool {
handleMobilePayPayment(with: url)
return true
}
func handleMobilePayPayment(with url: URL) {
MobilePayManager.sharedInstance().handleMobilePayPayment(with: url, success: {(mobilePaySuccessfulPayment: MobilePaySuccessfulPayment?) -> Void in
let orderId: String = mobilePaySuccessfulPayment!.orderId
let transactionId: String = mobilePaySuccessfulPayment!.transactionId
let amountWithdrawnFromCard: String = "(mobilePaySuccessfulPayment!.amountWithdrawnFromCard)"
print("MobilePay purchase succeeded: Your have now paid for order with id (orderId) and MobilePay transaction id (transactionId) and the amount withdrawn from the card is: (amountWithdrawnFromCard)")
self.alert(message: "You have now paid with MobilePay. Your MobilePay transactionId is (transactionId)", title: "MobilePay Succeeded")
}, error: {(error: Error?) -> Void in
// let dict: [AnyHashable: Any]? = error?.userInfo
// let errorMessage: String? = (dict?.value(forKey: NSLocalizedFailureReasonErrorKey) as? String)
// print("MobilePay purchase failed: Error code '(Int(error?.code))' and message '(errorMessage)'")
// self.alert(message: errorMessage!, title: "MobilePay Error (error?.code as! Int)")
self.alert(message: error as! String)
//TODO: show an appropriate error message to the user. Check MobilePayManager.h for a complete description of the error codes
//An example of using the MobilePayErrorCode enum
//if (error.code == MobilePayErrorCodeUpdateApp) {
// NSLog(@"You must update your MobilePay app");
//}
}, cancel: {(_ mobilePayCancelledPayment: MobilePayCancelledPayment?) -> Void in
print("MobilePay purchase with order id (mobilePayCancelledPayment?.orderId!) cancelled by user")
self.alert(message: "You cancelled the payment flow from MobilePay, please pick a fruit and try again", title: "MobilePay Canceled")
})
}
I:appdelegateで
MobilePay purchase succeeded: Your have now paid for order with id 123456 and MobilePay transaction id 123456789and the amount withdrawn from the card is: 10.0
2017-05-01 09:05:57.797628+0200 Keebin_development_1[262:10533] Warning: Attempt to present <UIAlertController: 0x16ba0e00> on <Keebin_development_1.LoginViewController: 0x15e91d40> whose view is not in the window hierarchy!
2017-05-01 09:05:59.033882+0200 Keebin_development_1[262:10533] [App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction
この我々のコードどのようにこの問題を解決するためのアイデアはありません、それは警告がページが適切に読み込まれる前に呼び出されるようですか?
ご協力いただければ幸いです。 事前に感謝、セバスチャン。
任意のスクリーンショットを持っているを使用して最上位のコントローラを見つけることによって動作するようになった、と言われたとして? –
最上位のView Controllerを見つけてアラートを表示 –
このself.windowを置き換えようとしますか.rootViewController?.present(alertController、animated:true、completed:nil)** ** を使用してUIApplication.shared.keyWindow?rootviewController ?present(alertController、animated:true、completed:nil) – KKRocks