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
Hi I have some issue dequeueInput function
as you can see in the image. The app works fine on the simulator but on real device i keep getting this crash.
i changed the: var combine = NSData(data: fragBuffer) as Data into: var combine:Data = fragBuffer but i guess that is not thread safe .
var combine = NSData(data: fragBuffer) as Data
var combine:Data = fragBuffer
can you please suggest other solution?
The text was updated successfully, but these errors were encountered:
Does this happen with large payloads? This is an issue with the websocket library itself.
Sorry, something went wrong.
the data that i receive is around the 2- 3 Mb a small example NSInvalidArgumentException', reason: '*** NSAllocateMemoryPages(2261002) failed
NSInvalidArgumentException', reason: '*** NSAllocateMemoryPages(2261002) failed
daltoniam/Starscream#289 Looks like a known issue.
Thanks dude that helped , i guess that my google search skills still suck :)
No branches or pull requests
Hi I have some issue dequeueInput function
as you can see in the image. The app works fine on the simulator but on real device i keep getting this crash.
i changed the:
var combine = NSData(data: fragBuffer) as Data
into:
var combine:Data = fragBuffer
but i guess that is not thread safe .
can you please suggest other solution?
The text was updated successfully, but these errors were encountered: