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
I have multiple domain names that need to be switched, and when I call openButtonClick multiple times, there is a memory leak
- (void)openButtonClick { if (self.webSocket) { [self.webSocket close]; self.webSocket.delegate = nil; self.webSocket = nil; } NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"wss://www.doex.com/ws/quote/v1"]]; [request setTimeoutInterval:6]; [self setHttpHeaderRequest:request]; self.webSocket = [[SRWebSocket alloc] initWithURLRequest:request]; self.webSocket.delegate = self; [self.webSocket open]; }
SocketRocket (0.6.0)
The text was updated successfully, but these errors were encountered:
Have you had any luck fixing this issue?
Sorry, something went wrong.
您有幸解决这个问题吗?
No, I haven't solved the problem yet. I'm using 'Starscream'.
No branches or pull requests
I have multiple domain names that need to be switched, and when I call openButtonClick multiple times, there is a memory leak
SocketRocket (0.6.0)
The text was updated successfully, but these errors were encountered: