Skip to content
New issue

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

Use of undeclared identifier 'RLMPropertyTypeArray' error #103

Open
jcmartinac opened this issue Oct 19, 2017 · 4 comments
Open

Use of undeclared identifier 'RLMPropertyTypeArray' error #103

jcmartinac opened this issue Oct 19, 2017 · 4 comments

Comments

@jcmartinac
Copy link

Hello!
I have just update my pods and with the new version of Realm (3.0.0) this identifier is not available, so RLMObeject+Copying.m file is not compiling... any help?

@BosAtWork
Copy link

I had same issue and found on their release page https://github.com/realm/realm-cocoa/releases that they deprecated this enum. You can now just replace

if (property.type == RLMPropertyTypeArray)

to

if(property.array)

@jcmartinac
Copy link
Author

Thanks! It solves the problem

@SebastianKumor
Copy link

I made fork from this repo that has those updates from Realm 3.0 https://github.com/SebastianKumor/Realm-JSON

@Dalmangyi
Copy link

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants