I've been getting this error only on an old iPhone4s while logging the user with Facebook and Parse. When I run it on simulator this error never happen.
When it happens the app has taken only 21.2MB from memory that is just 4.2% of the memory available on my testing 4s.
I am not so sure from where to start in order to fix this bug. Completely lost to be honest.
2015-11-12 08:09:27.647 APPNAME[3883:426582] Received memory warning. warning: could not load any Objective-C class information. This will significantly reduce the quality of type information available. (lldb)
Some updates on the question, if you still think it is a duplicate I will remove it. Although the question you suggested as a replica do not actually help me to solve the issue.
I could partially remove the error by reducing the number of queries that where happening at the same time and using Parse. The app in order to get a first launch and sign up a new user I would need to:
- log with facebook
- query facebook graph data
- add facebook graph data to Parse user
- create reputation table and relate
- launch main screen
- query reputation
- query terms and conditions
- query tutorial status
By removing the last two ones I could get the warning to go away in the first seconds of app use. And then I get the warning/error after 10 minutes of letting the app run with no interaction.
That makes me think, if you have many queries happening on background at the same time can that cause this type of memory warning? Or this is purely a bug on Xcode as the other question suggests?