gpt4 book ai didi

ios - 裁剪字符 - iOS11 - 警报对话框询问

转载 作者:行者123 更新时间:2023-11-30 11:39:22 24 4
gpt4 key购买 nike

裁剪字符 - iOS11 - 警报对话框。如何修复它?有谁知道发生这种情况的原因吗?

enter image description here

func settingsButtonPressed() {
let alert = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
let closeAction = UIAlertAction(title: "Anuluj", style: .cancel) { (action) in
}
alert.addAction(closeAction)
let restorePurchases = UIAlertAction(title: "Przywróć zakupy", style: .default) { (action) in
self.restorePurchases()
}
alert.addAction(restorePurchases)

let refreshCatalogs = UIAlertAction(title: "Odśwież", style: .default) { (action) in
self.collectionView.reloadData()
}
alert.addAction(refreshCatalogs)
let delPubs = UIAlertAction(title: "Usuń publikacje", style: .destructive) { (action) in
self.deletePublications()
}
alert.addAction(delPubs)
present(alert, animated: true, completion: nil)
}

最佳答案

无法重现。我运行了与您完全相同的代码(当然,减去处理程序中的调用),这就是我所看到的:

enter image description here

我的建议是:在一个普通的项目中尝试这部分代码,只是为了说服自己这应该有效。然后开始思考您的真实应用程序有何不同。也许您以某种方式弄乱了字体或外观,从而导致了此问题。

关于ios - 裁剪字符 - iOS11 - 警报对话框询问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49416347/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com