We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My code:
_socket = [[GCDAsyncProxySocket alloc] init]; _socket.delegate = self; [_socket setProxyHost:@"1.243.224.225" port:8080 version:GCDAsyncSocketSOCKSVersion5]; NSError *error; BOOL success = [_socket connectToHost:@"chat.quickblox.com" onPort:5222 error:&error]; if(!success){ NSLog(@"error %@", error); }
I got a crash in library http://qblx.co/RuH4de
By some reason self.delegateQueue is nil here
I fixed this by setting it manually
_socket = [[GCDAsyncProxySocket alloc] init]; _socket.delegate = self; _socket.delegateQueue = dispatch_queue_create("my delegate queue", 0);
but this is not a good solution
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My code:
I got a crash in library http://qblx.co/RuH4de
By some reason self.delegateQueue is nil here
I fixed this by setting it manually
but this is not a good solution
The text was updated successfully, but these errors were encountered: