Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to have an iOS app that's not ARC enabled but with some arc files?

Is it possible to have an iOS app that's not ARC enabled but with some arc files?

I have a non-ARC enabled app where I would like to bring in some ARC enabled files. Is this possible?

thanks

like image 939
hanumanDev Avatar asked Apr 17 '12 14:04

hanumanDev


1 Answers

You can use the -fobjc-arc flag to enable ARC for specific files.

like image 91
dddsspo Avatar answered Nov 12 '22 03:11

dddsspo