@autoreleasepool make mistakes

I tried to compile a program with MagicalRecord and I have an error

I print screen from compilation don't know how to solve this problem

everything is fine in the older sdk.

+1
source share
1 answer

You do not need a special case. @autoreleasepool will work for all versions of iOS. it is a compiler function, not an iOS function. It is assumed that you are using xcode 4.2. If you have an earlier version of xcode, @autoreleasepool not available.

+6
source

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


All Articles