0

I am using google protobuf in my iOS project and as it turns out, the files generated by protoc does not adhere to ARC. It does retain, dealloc and such. I am using the protobuf-objc from here. Please let me know if anyone else has gone through the same issues and resolved.

Thanks in advance for the help.

Ben Lings
  • 28,823
  • 13
  • 72
  • 81
Gentoo
  • 347
  • 2
  • 8
  • 16

1 Answers1

2

The quickest solution for you is probably to disable ARC for just the generated files. Check out this question:

How can I disable ARC for a single file in a project?

Community
  • 1
  • 1
rob mayoff
  • 375,296
  • 67
  • 796
  • 848