최근 인터넷 연결 속도가 매우 느리고 GroundControl을 사용하는 고객에게 문제가 발생했습니다. 언제든지 앱을로드하려고 할 때 "서버에 연결 시도 중"로드 화면에서 멈 춥니 다. 나는 코드에서 성공 또는 실패가 모두 호출되지 않았기 때문에 (여기서는 앱이 적어도 발전했다면) 여기에 갇혀 있어야한다는 것을 알고있다.AFHTTPSessionManager가 멈추거나 교착 상태가됩니까?
NSURL *ourTable = [NSURL URLWithString:[[NSString stringWithFormat: @"%@://%@%@/bla/%@/bla/bla/Reachability",
(useSSLB == YES) ? @"https" : @"http", server, port, self.globalSettings.env]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
manager.responseSerializer = [AFJSONResponseSerializer serializer];
[manager GET:ourTable.absoluteString parameters:nil progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"ONLINE..");
[self.ourSyncClass functionThatGetsCalledWhenSuccess;
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(syncOther) userInfo:nil repeats:NO];
startSync = YES; //Bool value used for other stuffs
NSLog(@"Syncing Data");
[manager invalidateSessionCancelingTasks:YES];
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
NSLog(@"FAILED TO CONNECT TO SERVER. %@", error);
self.offline = YES; //bool used for other stuff
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[self.homeViewControllerInstance.syncView setAlpha:0.0];
[UIView commitAnimations];
[self.ourSyncClass createDB];
[self.ourSyncClass openDB];
[self startCustomFunction;
[manager invalidateSessionCancelingTasks:YES];
}];
GET 완료 블록에서 코드가 중단 (잠김) 되나요? 느린 인터넷 연결 때문입니까? GroundControl과 관련이있을 수 있습니까? 이런 상황을 어떻게 처리 할 수 있습니까?