gpt4 book ai didi

ios - NSOperation 失败时收到通知

转载 作者:行者123 更新时间:2023-11-30 13:29:54 26 4
gpt4 key购买 nike

我正在使用后台操作来发出 URL 请求。如果操作返回错误,如何通知我,然后将相同的操作类型重新添加到队列中以重试?

最佳答案

您可以使用 NSNotification 来实现这一点。创建通知并在请求失败时发布它。监听 Controller 中的通知。

示例如下。

添加通知监听器:

NSString *notificationName = @"RequestFailed";

[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(failedRequestNotification:)
name:notificationName
object:nil];

发布通知:

[[NSNotificationCenter defaultCenter] postNotificationName:notificationName object:nil userInfo:nil]

关于ios - NSOperation 失败时收到通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36689342/

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