所以这是我的第一篇文章,在我的 Objective C 和 iOS 编程简史中,我发现这个网站提供了令人难以置信的信息。无论如何,我遇到了各种各样的问题。快速总结:我正在尝试编写一个登录表单,它使用调用一个自定义类,该类使用 NSURLConnection 访问网络服务器以进行身份验证。一旦身份验证完成,我正在使用协议(protocol)和委托(delegate)将委托(delegate)回调用类以执行对主菜单 View Controller 的 segue。
问题在于,我尝试进入的菜单需要 6 到 75 秒才能显示。如果我删除 API 调用,它会立即加载。但是,我在整个过程中都在进行日志记录,并且一切似乎都以正常的速度进行。我什至在加载菜单 View Controller 时记录,并且所有记录都正常进行。但是菜单的实际显示是有延迟的!
下面是一些代码细节:
查看 Controller 方法:
- (void) userLoginNSString *)userName passwordNSString *)password {
NSLog(@"VC login method");
api = [theAPI getSelf];
[api setDelegate:self];
[api userLogin:userName password:password];
}
- (void) userLoginDoneBOOL)successful {
[self performSegueWithIdentifier"sgLoginToMainMenu" sender:self];
NSLog(@"Login Done");
}
API方法:
- (void) userLoginNSString *)userName passwordNSString *)password {
NSURL *url = [NSURL URLWithStringNSString *) [API_PATH stringByAppendingString"test.html"]];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
NSDictionary *json = [[JSON new] parseJSON:data];
self.usrID = [json objectForKey"usrID"];
self.sessionID = [json objectForKey"sessionID"];
self.userName = [json objectForKey"Username"];
NSLog(@"Username: %@", [json objectForKey"Username"]);
[[self delegate] userLoginDone:YES];
}];
}
所有 NSLog 都在正常的时间跨度(几毫秒)内执行。然而主菜单 View Controller 需要很长时间才能出现!我对 iOS 编程很陌生,所以我希望我只是忽略了谷歌搜索无法解决的问题。任何帮助将不胜感激!
Best Answer-推荐答案 strong>
您需要在主线程上更新 UI,但 userLoginDone: 在 NSOperationQueue 上被调用,它创建了自己的单独线程。这可以解释显示的延迟。您是否尝试过使用 [NSOperationQueue mainQueue] (返回与主线程关联的队列)来传递给 sendAsynchronousRequest: ?
关于objective-c - NSURLConnection 后查看 Controller Segue 延迟,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13965518/
|