gpt4 book ai didi

ios - 未收到NSNotification

转载 作者:行者123 更新时间:2023-12-01 18:52:15 25 4
gpt4 key购买 nike

我在接收NSNotification时遇到问题。我可以说我的网络调用在服务器端是有效的,并且服务器的响应是在应用程序的网络层接收到的,但是当我的网络层类执行向NSNotification发送UIViewController的最后一步时,该通知是从未收到。结果,我的应用程序挂起,即使其他所有内容都按预期工作了。

这是初始化所有内容的UIViewController:

- (void) updateAffiliations
{
[self.activityIndicator startAnimating];
self.activityIndicator.hidden = NO;

Updater *updater = [[Updater alloc] init];
NSDictionary *clearTextParams = [updater makeDictionary];
NSString *phpPath = @"updateRecord.php";
NSDictionary *parameters = [[SharedCipher sharedCipher] encryptParameters:clearTextParams];

_preferenceUpdateResponse = @"preferencesResponse";

[[NSNotificationCenter defaultCenter] addObserver : self
selector : @selector(preferenceUpdateResult:)
name : _preferenceUpdateResponse
object : nil];

[[SharedNetworkObject sharedNetworkObject] sendHttpPost : phpPath
parameters : parameters
notificationName : _preferenceUpdateResponse];
NSLog(@"sent");
}

- (void) preferenceUpdateResult: (NSNotification *) notification
{
NSLog(@"response received from network layer");
NSDictionary *dict = [notification userInfo];

[self.activityIndicator stopAnimating];
self.activityIndicator.hidden = YES;

//...
}

我所指的网络层是一个称为SharedNetworkObject的单例类。我反复使用了此类,这是发生此问题的唯一实例:
- (void) sendHttpPost : (NSString *) phpPath
parameters : (NSDictionary *) parameters
notificationName : (NSString *) notificationName
{
NSLog(@"sending http post to : %@", phpPath);
NSLog(@"params: %@", parameters);

[self POST : phpPath
parameters : parameters
success : ^(NSURLSessionDataTask *task, id responseObject)
{
NSLog(@"response object: %@", responseObject);
NSLog(@"broadcasting notification to : %@", notificationName);
[[NSNotificationCenter defaultCenter] postNotificationName:notificationName object:nil userInfo:responseObject];
}

failure : ^(NSURLSessionDataTask *task, NSError *error)
{
NSLog(@"Shared Network Object error: %@", error);
NSDictionary * userInfo = @{ @"result" : @"failure", @"error" : error };
[[NSNotificationCenter defaultCenter] postNotificationName : notificationName object:nil userInfo:userInfo];
}];
}

这是控制台输出的示例,用于显示进度(然后显示进度不足)。没有错误发生,但由于未收到上一个通知,所以该应用程序挂起:

发送http帖子到:updateRecord.php
参数:{
ciphertext =“忽略此内容,许多加密的胡言乱语”;
“device_iv” =“0Q7yxsTpzQEaDGPpJ96JrA ==”;
paddLength = 11;
“session_id” = 845903271; }
已发送
响应对象:{
message =“成功更新记录”;
结果=成功; }
广播通知到:preferencesResponse

此输出看起来不错,但它是不完整的。最后一行应该说

从网络层收到的响应

但这永远不会输出,因为永远不会收到通知。我已经检查了导致通知永不返回的所有常见原因,我认为这是对的。实际上,我在其他地方又三遍使用了这种精确的模式,它们都工作得很好。

有人看到我在做什么错吗?这可能是线程问题吗?

非常感谢!

最佳答案

几乎可以肯定是线程问题,因为网络代码是在后台线程上执行的,但是您希望在主线程上收到通知(以更新ui和 Activity 指示器)。

幸运的是,简单的解决方案...将它们包装在dispatch_async调用中:

dispatch_async(dispatch_get_main_queue(), ^{
[[NSNotificationCenter defaultCenter] postNotificationName:notificationName object:nil userInfo:responseObject];
});

关于ios - 未收到NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30264470/

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