Inclusion in ARC in xamarin

Most security and penetration tools report that ARC is not enabled.

fobjc-arc flag is not Found 

As far as I know, we cannot do this in xamarin, because there are no build settings here.

This flag can only be set in the build settings.

Even if we could, this would not work, because xamarin uses C # and MRC to manage memory on its own.

Can someone explain to me how this can be done or not, or my understanding is wrong

Edit:

We can include ARC in a complete project using build settings

CLANG_ENABLE_OBJC_ARC=YES

But in xam studio there is no way to do this ... setting a value in mtouch also causes an error

+4
source share
1

mtouch Xamarin.iOS:

-gcc_flags "-fobjc-arc"
+3

Source: https://habr.com/ru/post/1676073/


All Articles