gpt4 book ai didi

ios - SCLAertView 等待没有持续时间的 API

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:26:18 24 4
gpt4 key购买 nike

我想使用 SCLAlertView 等待屏幕,直到 API 调用完成。例如……

SCLAlertView *alert = [[SCLAlertView alloc]init];
[alert showWaiting];
[someAPIRequest makeAsynchronousCall:success^(MyClass *userData,NSError *error){
[alert hideWaiting];

}];

但 SCLAlertView 在特定时间间隔后自动隐藏,但我想通过调用方法隐藏。

最佳答案

首先您需要创建 SCLAppearance 并覆盖您想要设置的值。

这里是 Swift 3.0 的例子:

// Create the appearance
// Hide the close button and disable autoDismiss
let appearance = SCLAlertView.SCLAppearance(showCloseButton: false, shouldAutoDismiss: false)
// Initialise the alert using appearance
let alert = SCLAlertView(appearance: appearance)
// Present the alert
alert.showWait("Title", subTitle: "Subtitle")
//
someBlock {
alert.hideView()
}

我想在 Objective C 中创建它应该没问题。但是,我只在 Swift 项目中使用 SCLAlertView。

关于ios - SCLAertView 等待没有持续时间的 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41042632/

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