管卓卿
管卓卿

Reputation: 21

"This file requires ARC support"

https://developers.google.com/+/mobile/ios/getting-started.

I was connected Google according to this tutorial. I put the "Automatic Reference Counting" disabled.

Also "-fno-objc-arc" added. Why would report this error.

#error "This file requires ARC support"

Upvotes: 1

Views: 830

Answers (1)

Stephen Darlington
Stephen Darlington

Reputation: 52575

I think you answered your own question. You have disabled ARC support.

The file requires ARC support.

Solution is : re-enable ARC support.

Upvotes: 2

Related Questions