Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

automatic reference disable in ios

Tags:

ios

iphone

How can i disable automatic reference for specific files in IOS. I have a facebook API, where it isn't automatic reference and so I want to disable it for facebook api files

like image 965
George Avatar asked May 15 '26 12:05

George


1 Answers

Head to the compile sources section of the build phases and add the "-fno-objc-arc" to the files you want to disable ARC for.

enter image description here

like image 173
JonB Avatar answered May 17 '26 01:05

JonB