0

我想将我的应用程序图标放在 alertTitle 上方的警报控制器中 - 与调用应用程序审查时打开的警报相同SKStoreReviewController.requestReview()

我还没有找到任何关于它的文档。

那么,如何处理下面的代码才能让 App Icon 出现呢?


let alertController = UIAlertController(title: alertHeaderText, message: alertText, preferredStyle: UIAlertController.Style.alert)


let option1: UIAlertAction = UIAlertAction(title: "text", style: .default, handler: {
            (action) in

            // some code

        })

let option2: UIAlertAction = UIAlertAction(title: "text", style: .default, handler: {
            (action) in

            // some code 

        })


alertController.addAction(option1)
alertController.addAction(option2)


self.present(alertController, animated: true, completion: nil)

4

0 回答 0