0

The library is here. http://code.google.com/p/google-api-objectivec-client/

I want to use the SDK with ARC mode enabled. But somehow I can't find the correct way to import the SDK. Is there any step-by-step tutorial? Thanks!

I've tried the answer from How to use GData in iphone?. But it does not work for me.

Community
  • 1
  • 1
shiami
  • 7,174
  • 16
  • 53
  • 68

1 Answers1

2

The library documentation discusses ARC use here.

When compiling the library as a static lib or a framework, no special steps must be taken for ARC compatibility.

If compiling the library source files directly into the target of a project that has ARC enabled, then ARC must be disabled for the files of the library by using the compiler flag -fno-objc-arc

grobbins
  • 1,564
  • 1
  • 8
  • 6